diff --git a/citadel.dme b/citadel.dme index 8d6df94c0be9..5c76643dc852 100644 --- a/citadel.dme +++ b/citadel.dme @@ -5412,12 +5412,13 @@ #include "maps\sectors\miaphus\miaphus-misc.dm" #include "maps\sectors\miaphus\miaphus.dm" #include "maps\sectors\mining_192\mining_192.dm" +#include "maps\sectors\nebula_tradeport\nebula_tradeport-areas.dm" +#include "maps\sectors\nebula_tradeport\nebula_tradeport-shuttles.dm" +#include "maps\sectors\nebula_tradeport\nebula_tradeport.dm" #include "maps\sectors\piratebase_192\piratebase_192.dm" #include "maps\sectors\roguemining_192\roguemining_192.dm" #include "maps\sectors\surt\surt.dm" #include "maps\sectors\surt\surt_areas.dm" -#include "maps\sectors\tradeport\shuttles.dm" -#include "maps\sectors\tradeport_192\tradeport_192.dm" #include "maps\sectors\virgo2_140\virgo2_140.dm" #include "maps\sectors\virgo4_140\virgo4_140.dm" #include "maps\sectors\wasteland_192\wasteland_192.dm" diff --git a/code/modules/food/food/snacks/meat.dm b/code/modules/food/food/snacks/meat.dm index 3d919e1e8741..3877bf377140 100644 --- a/code/modules/food/food/snacks/meat.dm +++ b/code/modules/food/food/snacks/meat.dm @@ -56,9 +56,9 @@ filling_color = "#BBBBAA" /obj/item/reagent_containers/food/snacks/meat/chicken/Initialize(mapload) - ..() - reagents.remove_reagent("triglyceride", INFINITY) - //Chicken is low fat. Less total calories than other meats + . = ..() + reagents.remove_reagent("triglyceride", INFINITY) + //Chicken is low fat. Less total calories than other meats /obj/item/reagent_containers/food/snacks/meat/chicken/penguin name = "meat" diff --git a/code/modules/maps/overmap/planets/_lythios43c.dm b/code/modules/maps/overmap/planets/_lythios43c.dm index 571be8e583ea..4d931e2fc00c 100644 --- a/code/modules/maps/overmap/planets/_lythios43c.dm +++ b/code/modules/maps/overmap/planets/_lythios43c.dm @@ -26,6 +26,8 @@ "Civilian Century Shuttle" = list("rift_oldcentury_pad"), "Dart EMT Shuttle" = list("rift_emt_pad"), "Beruang Trade Ship" = list("rift_trade_dock"), + "Scoophead trade Shuttle" = list ("rift_scoophead_dock"), + "Udang Transport Shuttle" = list ("rift_udang_dock"), "NDV Quicksilver" = list("rift_specops_dock"), "Pirate Skiff" = list("rift_pirate_dock"), ) diff --git a/code/modules/maps/overmap/space/trade_station/trade_station.dm b/code/modules/maps/overmap/space/trade_station/trade_station.dm index 24b4cf9a65c6..24b37cdd11ed 100644 --- a/code/modules/maps/overmap/space/trade_station/trade_station.dm +++ b/code/modules/maps/overmap/space/trade_station/trade_station.dm @@ -31,8 +31,17 @@ ) initial_restricted_waypoints = list( - "Beruang Trade Ship" = list("tradeport_hangar") + "Beruang Trade Ship" = list("tradeport_hangar"), + "Udang Transport Shuttle" = list("tradeport_udang"), + "Scoophead trade Shuttle" = list("tradeport_scoophead"), + "Arrowhead Racing Shuttle" = list("tradeport_arrowhead"), + "Spacena Caravan Shuttle" = list("tradeport_caravan"), + "Spacena Adventurer Shuttle" = list("tradeport_adventurer"), + "Cargo Tug Hauler Shuttle" = list("tradeport_tug"), + "Utility Micro Shuttle" = list("tradeport_utilitymicro"), + "Teshari Runabout Shuttle" = list("tradeport_runabout") ) + /* // Old Restricted list. Leaving commented out for reference - Bloop initial_restricted_waypoints = list( "Beruang Trade Ship" = list("tradeport_hangar"), @@ -116,6 +125,62 @@ base_turf = /turf/simulated/floor/tiled/techfloor/grid base_area = /area/tradeport/dock +/obj/effect/shuttle_landmark/triumph/trade/udang + name = "Udang Underconstruction Docking bay" + landmark_tag = "tradeport_udang" + docking_controller = "tradeport_udang_dock" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/triumph/trade/scoophead + name = "Scoophead Docking bay" + landmark_tag = "tradeport_scoophead" + docking_controller = "tradeport_scoophead_dock" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/triumph/trade/arrowhead + name = "VIP suit docking hatch" + landmark_tag = "tradeport_arrowhead" + docking_controller = "tradeport_arrowhead_dock" + base_turf = /turf/space + base_area = /area/space + +/obj/effect/shuttle_landmark/triumph/trade/caravan + name = "Caravan Docking Bay 2 Spot" + landmark_tag = "tradeport_caravan" + docking_controller = "tradeport_caravan_dock" + base_turf = /turf/simulated/floor/reinforced + base_area = /area/sector/nebula_tradeport/dock2 + +/obj/effect/shuttle_landmark/triumph/trade/adventurer + name = "Adventurer Docking Bay 2 Spot" + landmark_tag = "tradeport_adventurer" + docking_controller = "tradeport_adventurer_dock" + base_turf = /turf/simulated/floor/reinforced + base_area = /area/sector/nebula_tradeport/dock2 + +/obj/effect/shuttle_landmark/triumph/trade/tug + name = "Tug Hauler Docking Bay 2 Spot" + landmark_tag = "tradeport_tug" + docking_controller = "tradeport_tug_dock" + base_turf = /turf/simulated/floor/reinforced + base_area = /area/sector/nebula_tradeport/dock2 + +/obj/effect/shuttle_landmark/triumph/trade/utilitymicro + name = "Utility and service Docking Bay 2 Spot" + landmark_tag = "tradeport_utilitymicro" + docking_controller = "tradeport_utilitymicro_dock" + base_turf = /turf/simulated/floor/reinforced + base_area = /area/sector/nebula_tradeport/dock2 + +/obj/effect/shuttle_landmark/triumph/trade/runabout + name = "Teshari Runabout Docking Bay 2 Spot" + landmark_tag = "tradeport_runabout" + docking_controller = "tradeport_runabout_dock" + base_turf = /turf/simulated/floor/reinforced + base_area = /area/sector/nebula_tradeport/dock2 + // Todo /* /obj/machinery/camera/network/trade diff --git a/code/modules/maps/templates/misc_presets/rift_shuttle_landmarks.dm b/code/modules/maps/templates/misc_presets/rift_shuttle_landmarks.dm index 2a68503403a8..a3af8531d760 100644 --- a/code/modules/maps/templates/misc_presets/rift_shuttle_landmarks.dm +++ b/code/modules/maps/templates/misc_presets/rift_shuttle_landmarks.dm @@ -28,7 +28,7 @@ Need to turn all of these into proper initializers like this: /obj/effect/shuttle_landmark/rift/deck3/oldcentury name = "NSB Atlas - Secondary Civilian Transport Pad" landmark_tag = "rift_oldcentury_pad" - docking_controller = "rift_oldcentury_dock" + docking_controller = "oldcentury_dock" base_turf = /turf/simulated/floor/reinforced/lythios43c base_area = /area/rift/surfacebase/outside/outside3 @@ -45,6 +45,18 @@ Need to turn all of these into proper initializers like this: base_turf = /turf/simulated/floor/reinforced/lythios43c base_area = /area/rift/surfacebase/outside/outside3 +/obj/effect/shuttle_landmark/rift/deck3/scoophead + name = "NSB Atlas - Scoophead Pad" + landmark_tag = "rift_scoophead_dock" + base_turf = /turf/simulated/floor/reinforced/lythios43c + base_area = /area/rift/surfacebase/outside/outside3 + +/obj/effect/shuttle_landmark/rift/deck3/udang + name = "NSB Atlas - Udang Pad" + landmark_tag = "rift_udang_dock" + base_turf = /turf/simulated/floor/reinforced/lythios43c + base_area = /area/rift/surfacebase/outside/outside3 + /obj/effect/shuttle_landmark/rift/deck3/specops name = "NSB Atlas - Special Operations Pad" landmark_tag = "rift_specops_dock" @@ -144,6 +156,14 @@ Need to turn all of these into proper initializers like this: name = "In transit" landmark_tag = "nav_transit_trade" +/obj/effect/shuttle_landmark/transit/rift/trade/udang + name = "In transit" + landmark_tag = "nav_transit_udang" + +/obj/effect/shuttle_landmark/transit/rift/trade/scoophead + name = "In transit" + landmark_tag = "nav_transit_scoophead" + /obj/effect/shuttle_landmark/transit/rift/emt name = "In transit" landmark_tag = "nav_transit_emt" diff --git a/maps/endeavour/endeavour.dm b/maps/endeavour/endeavour.dm index 9ef9f75c6956..f31553fc93bd 100644 --- a/maps/endeavour/endeavour.dm +++ b/maps/endeavour/endeavour.dm @@ -21,7 +21,7 @@ /datum/map/sector/gaia_192, /datum/map/sector/frozen_192, /datum/map/sector/wasteland_192, - /datum/map/sector/tradeport_192, + /datum/map/sector/nebula_tradeport, /datum/map/sector/surt, /datum/map/sector/miaphus, /datum/map/sector/roguemining_192/one, diff --git a/maps/euthenia/euthenia.dm b/maps/euthenia/euthenia.dm index 77279225e854..afa91a78d2e4 100644 --- a/maps/euthenia/euthenia.dm +++ b/maps/euthenia/euthenia.dm @@ -24,7 +24,7 @@ /datum/map/sector/gaia_192, /datum/map/sector/frozen_192, /datum/map/sector/wasteland_192, - /datum/map/sector/tradeport_192, + /datum/map/sector/nebula_tradeport, /datum/map/sector/surt, /datum/map/sector/miaphus, /datum/map/sector/roguemining_192/one, diff --git a/maps/rift/levels/rift-06-surface3.dmm b/maps/rift/levels/rift-06-surface3.dmm index eb4a390079d0..77e80ca95840 100644 --- a/maps/rift/levels/rift-06-surface3.dmm +++ b/maps/rift/levels/rift-06-surface3.dmm @@ -2982,6 +2982,10 @@ }, /turf/simulated/floor/tiled/steel, /area/exploration) +"ajJ" = ( +/obj/effect/shuttle_landmark/rift/deck3/udang, +/turf/simulated/floor/reinforced/lythios43c, +/area/rift/surfacebase/outside/outside3) "ajM" = ( /obj/machinery/appliance/cooker/oven, /obj/effect/floor_decal/corner/grey{ @@ -7764,6 +7768,14 @@ }, /turf/simulated/floor, /area/shuttle/civvie/general) +"axY" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "rift_udang_dock"; + req_one_access = list(67) + }, +/turf/simulated/wall/r_wall/prepainted, +/area/rift/surfacebase/outside/outside3) "axZ" = ( /obj/structure/closet/chefcloset, /obj/item/glass_jar, @@ -16682,6 +16694,16 @@ }, /turf/simulated/floor/tiled/steel, /area/rift/stairwell/primary/surfacethree) +"bdT" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/reinforced/lythios43c, +/area/rift/surfacebase/outside/outside3) "bfe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -18370,6 +18392,10 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/shuttle/courser/general) +"elu" = ( +/obj/structure/marker_beacon/red, +/turf/simulated/floor/reinforced/lythios43c, +/area/rift/surfacebase/outside/outside3) "eod" = ( /turf/simulated/wall/r_wall/prepainted/command, /area/ai) @@ -18397,6 +18423,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel, /area/security/checkpoint2) +"eqy" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/turf/simulated/open/lythios43c, +/area/rift/surfacebase/outside/outside3) "esl" = ( /obj/machinery/door/airlock/maintenance/int, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -18437,6 +18470,16 @@ }, /turf/simulated/floor/tiled/steel, /area/hallway/primary/surfacethree) +"ewC" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/reinforced/lythios43c, +/area/rift/surfacebase/outside/outside3) "ewE" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -18998,6 +19041,16 @@ "fhj" = ( /turf/simulated/wall/prepainted/exploration, /area/maintenance/station/exploration) +"fhW" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/reinforced/lythios43c, +/area/rift/surfacebase/outside/outside3) "fin" = ( /obj/machinery/door/firedoor{ dir = 8 @@ -19096,6 +19149,14 @@ /obj/effect/paint/violet, /turf/simulated/floor/plating, /area/exploration/courser_dock) +"ftd" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "oldcentury_dock"; + req_one_access = list(67) + }, +/turf/simulated/wall/r_wall/prepainted, +/area/rift/surfacebase/outside/outside3) "ftr" = ( /obj/machinery/door/firedoor/glass{ dir = 4 @@ -20245,6 +20306,10 @@ }, /turf/simulated/floor/wood, /area/exploration/pilot_Office) +"hso" = ( +/obj/effect/shuttle_landmark/rift/deck3/scoophead, +/turf/simulated/floor/reinforced/lythios43c, +/area/rift/surfacebase/outside/outside3) "huM" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9 @@ -21146,6 +21211,14 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/emt/cockpit) +"iYY" = ( +/obj/structure/marker_beacon/yellow, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/reinforced/lythios43c, +/area/rift/surfacebase/outside/outside3) "iZn" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -23089,6 +23162,10 @@ "mpX" = ( /turf/simulated/wall/prepainted/exploration, /area/exploration/pathfinder_office) +"mqh" = ( +/obj/structure/metal_edge, +/turf/simulated/floor/outdoors/snow/lythios43c, +/area/rift/surfacebase/outside/outside3) "mrb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -24032,6 +24109,10 @@ }, /turf/simulated/floor/tiled/steel, /area/crew_quarters/bar) +"ocS" = ( +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/outdoors/snow/lythios43c, +/area/rift/surfacebase/outside/outside3) "odR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, @@ -24614,6 +24695,13 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/outdoors/snow/lythios43c, /area/rift/surfacebase/outside/outside3) +"paF" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/reinforced/lythios43c, +/area/rift/surfacebase/outside/outside3) "peI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass{ @@ -24979,6 +25067,13 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/monodark, /area/shuttle/oldcentury) +"pZE" = ( +/obj/effect/floor_decal/industrial/halfstair, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/lythios43c, +/area/rift/surfacebase/outside/outside3) "qcL" = ( /obj/landmark/spawnpoint/job/pilot, /obj/item/stool/padded, @@ -26165,6 +26260,13 @@ }, /turf/simulated/floor/tiled/steel, /area/hallway/secondary/docking_hallway) +"sBh" = ( +/obj/effect/floor_decal/industrial/halfstair, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/outdoors/snow/lythios43c, +/area/rift/surfacebase/outside/outside3) "sCu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 4 @@ -27018,6 +27120,10 @@ }, /turf/simulated/floor/tiled/monotile, /area/exploration) +"uue" = ( +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/reinforced/lythios43c, +/area/rift/surfacebase/outside/outside3) "uuE" = ( /obj/structure/flora/ausbushes/sparsegrass, /turf/simulated/floor/outdoors/snow/lythios43c, @@ -27560,6 +27666,11 @@ }, /turf/simulated/floor/tiled/steel, /area/security/checkpoint2) +"vmB" = ( +/obj/structure/lattice, +/obj/structure/metal_edge, +/turf/simulated/open/lythios43c, +/area/rift/surfacebase/outside/outside3) "vmQ" = ( /obj/structure/flora/grass/both{ pixel_x = 10; @@ -28452,6 +28563,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/bar/lower) +"wyy" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/reinforced/lythios43c, +/area/rift/surfacebase/outside/outside3) "wzN" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -28611,6 +28730,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/bar/lower) +"wVI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/reinforced/lythios43c, +/area/rift/surfacebase/outside/outside3) "wWx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -28976,6 +29102,10 @@ /obj/spawner/window/low_wall/reinforced/full/firelocks, /turf/simulated/floor/plating, /area/shuttle/excursion/cargo) +"xxH" = ( +/obj/structure/lattice, +/turf/simulated/open/lythios43c, +/area/rift/surfacebase/outside/outside3) "xxP" = ( /turf/simulated/wall/prepainted/civilian, /area/crew_quarters/bar_backroom) @@ -31646,7 +31776,7 @@ aus aus aus aus -aus +elu afQ anp aOi @@ -33746,7 +33876,7 @@ aus aus aus aus -wyl +ftd abI chB xBA @@ -33975,7 +34105,7 @@ aus aus aus aus -jWp +wyl aQh aIA aIA @@ -34166,10 +34296,10 @@ aus aus aus aus +hso aus aus -aus -aus +uue apa aIA aIA @@ -34751,8 +34881,8 @@ aus aus aus aus -jWp -abI +aus +apa aIA aIA ahS @@ -34945,8 +35075,8 @@ aus aus aus aus -amn -aZo +aus +apa aIA aIA ahS @@ -35113,13 +35243,13 @@ aBK aus aus aus +aNd aus aus aus aus aus aus -aNd aus aus aus @@ -35139,8 +35269,8 @@ aus aus aus aus -amn -aZo +aus +apa aIA aIA ahS @@ -35333,8 +35463,8 @@ aus aus aus aus -amn -aZo +aus +apa aIA aIA ahS @@ -35527,8 +35657,8 @@ aus aus aus aus -amn -avM +aus +apa aIA aIA ahS @@ -35721,8 +35851,8 @@ aus aus aus aus -amn -aZo +aus +apa aIA aIA ahS @@ -35915,8 +36045,8 @@ aus aus aus aus -amn -aZo +jWp +abI aIA aIA ahS @@ -36109,7 +36239,7 @@ aus aus aus aus -jWp +amn aZo aIA aIA @@ -37078,7 +37208,7 @@ aus aus aus aus -aus +elu atI avM aIA @@ -38026,13 +38156,13 @@ aDY aDY aDY aDY +eqy aDY aDY aDY aDY aDY -aDY -aDY +eqy aDY aDY dwo @@ -38220,13 +38350,13 @@ aOi aOi aOi aOi +xxH aOi aOi aOi aOi aOi -aOi -aOi +xxH aOi aOi aKW @@ -38412,16 +38542,16 @@ aOi aOi aOi aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi +ewC +aUZ +aUZ +aUZ +aUZ +aUZ +aUZ +aUZ +iYY +vmB aOi aKW fkw @@ -38605,18 +38735,18 @@ aOi aOi aOi aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi +fhW +aus +aus +aus +aus +aus +aus +aus +aus +aus +iYY +vmB aKW fkw aIA @@ -38799,18 +38929,18 @@ aOi aOi aOi aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +avN aKW fkw aIA @@ -38993,19 +39123,19 @@ aOi aOi aOi aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aKW +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +vmB +aGz fkw aIA ahS @@ -39176,37 +39306,37 @@ aus aus amn anp -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aKW -fkw -aIA -ahS -aOi -aOi -aOi -aOi +aOi +aOi +aOi +aOi +aOi +aOi +aOi +aOi +aOi +aOi +aOi +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +vmB +aKW +fkw +aIA +ahS +aOi +aOi +aOi +aOi aOi aOi aOi @@ -39381,18 +39511,18 @@ aOi aOi aOi aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi +aBK +aus +aus +aus +aus +aus +aus +ajJ +aus +aus +amn +vmB aKW fkw aIA @@ -39575,18 +39705,18 @@ aOi aOi aOi aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +vmB aKW fkw aIA @@ -39769,18 +39899,18 @@ aOi aOi aOi aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +avN aKW fkw aIA @@ -39963,31 +40093,31 @@ acH acH acH acH -acH -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aKW +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +vmB +aGz fkw aIA -ahS -aOi -aOi -aOi -aOi +aOP aOi aOi aOi aOi aOi +xxH +xxH +xxH +xxH aOi aOi aOi @@ -40157,34 +40287,34 @@ acH acH acH acH -acH -acH -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +vmB aKW fkw aIA -ahS -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi -aOi +aOP +xxH +xxH +xxH +xxH +xxH +xxH +xxH +xxH +xxH +xxH +xxH +xxH aOi aOi aOi @@ -40351,18 +40481,18 @@ acH acH vmQ acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -aOi +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +avN aKW fFk dSP @@ -40545,18 +40675,18 @@ acH qhn acH acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +mqh aNk auz auz @@ -40739,23 +40869,23 @@ acH acH acH acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +mqh +qgy aAd aAd acH -acH +gFD afk aPZ aUZ @@ -40933,18 +41063,18 @@ fRp fRp aej acH -acH -acH -xbv -acH -sGC -acH -acH -xbv -acH -acH -acH -acH +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +mqh acH aAd aAd @@ -41127,22 +41257,22 @@ jTt fRp aej lVJ -acH -acH -acH -acH -acH -mUB -acH -acH -mUB -acH -acH -xbv -acH +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +axY +ocS aAd aAd -acH +xbv adx aus aus @@ -41321,19 +41451,19 @@ aHG fRp aej acH -acH -acH -acH -acH -sGC -acH -acH -acH -acH -acH -acH -acH -acH +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +aus +pZE +aAd aAd aAd acH @@ -41515,19 +41645,19 @@ dWj fRp aej acH -acH -mUB -acH -acH -acH -acH -acH -acH -xbv -acH -mUB -acH -acH +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +aus +sBh +aAd aAd aAd acH @@ -41709,22 +41839,22 @@ dWj fRp aej acH -acH -acH -acH -acH -acH -xbv -acH -acH -acH -acH -acH -acH -acH +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +mqh +gFD aAd aAd -acH +qgy adx aus aus @@ -41903,18 +42033,18 @@ xak fRp aej acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH +aBK +aus +aus +aus +aus +aus +aus +aus +aus +aus +amn +mqh acH aAd aAd @@ -42097,18 +42227,18 @@ fRp fRp aej acH -mUB -acH -acH -acH -acH -acH -acH -acH -acH -acH -xbv -acH +paF +aus +aus +aus +aus +aus +aus +aus +aus +aus +wyy +mqh acH aAd aAd @@ -42292,21 +42422,21 @@ fRp aej acH acH +bdT +aTN +aTN +aTN +aTN +aTN +aTN +aTN +wVI +mqh acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH -acH +xbv aAd aAd -acH +gFD adx aus aus diff --git a/maps/rift/rift.dm b/maps/rift/rift.dm index 7932ee1b9ec3..1dc514bcffc9 100644 --- a/maps/rift/rift.dm +++ b/maps/rift/rift.dm @@ -23,7 +23,7 @@ /datum/map/sector/gaia_192, /datum/map/sector/frozen_192, /datum/map/sector/wasteland_192, - /datum/map/sector/tradeport_192, + /datum/map/sector/nebula_tradeport, /datum/map/sector/surt, /datum/map/sector/miaphus, /datum/map/sector/roguemining_192/one, diff --git a/maps/sectors/nebula_tradeport/levels/nebula_tradeport.dmm b/maps/sectors/nebula_tradeport/levels/nebula_tradeport.dmm new file mode 100644 index 000000000000..3e42a9f5e23b --- /dev/null +++ b/maps/sectors/nebula_tradeport/levels/nebula_tradeport.dmm @@ -0,0 +1,64691 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/obj/structure/flora/pumpkin, +/obj/effect/floor_decal/grass_edge, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"aab" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/briefcase/fission{ + starts_with = list(/obj/item/coin/supermatter,/obj/item/coin/supermatter,/obj/item/coin/supermatter) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aac" = ( +/obj/item/bedsheet/hos, +/obj/structure/bed/padded, +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"aad" = ( +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aae" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/door/window/westleft{ + req_access = list(160) + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aaf" = ( +/obj/structure/closet/crate, +/obj/item/gunbox/donksoft/smg, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"aag" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/airless, +/area/space) +"aah" = ( +/mob/living/simple_mob/animal/passive/dog/tamaskan/Spice, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"aai" = ( +/obj/effect/floor_decal/grass_edge, +/turf/simulated/floor/outdoors/dirtlight, +/area/tradeport/cyndishow) +"aak" = ( +/turf/simulated/wall/rshull, +/area/shuttle/runabout) +"aal" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cafeteria) +"aan" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 8; + id = "spine_inbound" + }, +/turf/simulated/floor/plating, +/area/tradeport/spine) +"aao" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aap" = ( +/obj/spawner/window/borosillicate/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"aaq" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/machinery/button/windowtint{ + pixel_y = -22; + id = "udang_cargo" + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aas" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aat" = ( +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/commons) +"aau" = ( +/obj/structure/cable/yellow{ + 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/old_tile/purple, +/area/tradeport/cafeteria) +"aav" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + name = "Nebula Gas - Dormitories"; + req_access = list(160) + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aay" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/stasis_cage, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aaz" = ( +/turf/simulated/floor/outdoors/beach/sand/desert, +/area/tradeport/cyndishow) +"aaA" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade-ship-secure"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/turf/simulated/shuttle/plating, +/area/shuttle/trade_ship/general) +"aaB" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"aaC" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commhall) +"aaD" = ( +/obj/structure/bed/chair/sofa/beige/left, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "udang_cabin2"; + pixel_x = 5 + }, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/udang/main) +"aaE" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"aaF" = ( +/obj/structure/metal_edge, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aaG" = ( +/obj/machinery/computer/shuttle_control/explore/trade{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"aaH" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade"; + name = "Shop Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aaJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/external/glass{ + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aaM" = ( +/obj/machinery/door/airlock/multi_tile/glass/polarized{ + id_tint = "traderportdoor"; + req_access = list(160) + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aaN" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aaO" = ( +/obj/structure/table/standard, +/obj/random/soap, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/surgicalapron, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aaP" = ( +/obj/machinery/door/window/southright{ + name = "Cargo Hold"; + req_access = list(160) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aaQ" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aaR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/button/remote/blast_door{ + id = "adventurer1"; + name = "Adventurer Back Door"; + pixel_x = 30 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoorc0"; + id = "adventurer1"; + name = "Spacenat Caravan Airlock"; + opacity = 0 + }, +/obj/machinery/door/airlock/hatch{ + name = "Adventurer Airtight Hatch"; + req_one_access = null + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"aaS" = ( +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aaT" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tradeport/pads) +"aaV" = ( +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"aaW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aaX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/item/paper{ + info = "WELCOME TO THE NEBULA MOTEL \ TO BUY A PASS, SEEK M4RIA, AT BEHIND THE COUNTER. \ \ We have 9 rooms. \ Room 1 to 4 have a small kitchen, and washing room. \ Room 1 and 4 have 1 Double bed. \ 2 has 1 single bed \ 3 have 2 single beds. \ Those rooms are 30 Thrallers the 3 to 5 hours. \ \ Room 5 to 8 have no kitchen, and washing room. \ Room 6 and 8 have 1 Double bed. \ 5 has 1 single bed \ 7 have 2 single beds. \ Those rooms are 15 Thrallers the 3 to 5 hours. \ \ Room 9 is our VIP Suite. This suite has 2 bed rooms, 1 office, 1 fully equipped kitchen, 1 washroom, 1 laundry room, And its own shuttle call the Arrowhead, used by ex Tajaran racer Cheuk'Yager. the suite is 80 Thrallers the 3 to 5 hours. \ \ The Sauna is free to use. The public laundry machine and public bathroom are free to use. Guest pass are available if the rooms are shared."; + name = "Nebula Motel" + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aaY" = ( +/obj/machinery/power/smes/buildable{ + charge = 1.5e+007; + cur_coils = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"aaZ" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + req_access = list(160) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"abb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"abc" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/spine) +"abd" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"abe" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button{ + command = "cycle_ext"; + frequency = 1380; + pixel_x = 25; + pixel_y = 5; + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock/glass_external{ + name = "Nebula Gas - Employees Only" + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"abf" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"abg" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/commons) +"abi" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + name = "Nebula Gas - Warehouse"; + req_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"abj" = ( +/obj/effect/decal/remains/mummy1, +/turf/simulated/floor/outdoors/beach/sand/desert, +/area/tradeport/cyndishow) +"abk" = ( +/obj/structure/outcrop, +/turf/simulated/mineral/floor/vacuum, +/area/space) +"abm" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"abn" = ( +/obj/machinery/camera{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndishow) +"abo" = ( +/obj/random/multiple/voidsuit/vintage, +/obj/structure/closet, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"abq" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/reagent_containers/glass/bucket, +/turf/simulated/floor/grass, +/area/tradeport) +"abr" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"abs" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/space, +/area/space) +"abt" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tradeport/medical) +"abu" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"abv" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"abw" = ( +/obj/structure/barricade/cutout, +/obj/item/clothing/suit/storage/hooded/wintercoat/olive, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/tradeport/spine) +"abx" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/medical/public) +"aby" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"abz" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"abB" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/captain, +/obj/machinery/computer/security/telescreen{ + pixel_y = -35 + }, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"abC" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/lattice, +/turf/space/basic, +/area/space) +"abE" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/ketchup{ + pixel_y = 8 + }, +/obj/item/reagent_containers/food/condiment/soysauce{ + pixel_y = 17; + pixel_x = 5 + }, +/obj/item/reagent_containers/food/condiment/spacespice, +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_y = 15; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/condiment/hotsauce{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 8 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 8 + }, +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"abF" = ( +/obj/machinery/vending/loadout, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"abG" = ( +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/commons) +"abH" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"abI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"abJ" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"abK" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/spine) +"abL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/wall, +/area/shuttle/udang/main) +"abM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/closet/crate/solar, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"abO" = ( +/obj/machinery/light, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"abP" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/poster{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"abQ" = ( +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"abR" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/barricade, +/obj/machinery/light{ + light_range = 12 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"abS" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tradeport/pads) +"abU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/atmospherics) +"abV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"abW" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"abX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"abZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/tradeport/atmospherics) +"aca" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"acb" = ( +/obj/item/material/gravemarker, +/obj/effect/floor_decal/grass_edge{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"acc" = ( +/obj/structure/metal_edge, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"acd" = ( +/turf/space/basic, +/area/space) +"ace" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/chemical_dispenser/catering/bar_coffee, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"acg" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/catering/bar_alc, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"ach" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aci" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"acj" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "line maintenance"; + pixel_x = 28 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"ack" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"acl" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"acm" = ( +/obj/structure/coatrack{ + pixel_x = 11; + pixel_y = 13 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"acn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aco" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics" + }, +/turf/simulated/floor/grass, +/area/tradeport) +"acr" = ( +/turf/simulated/wall/prepainted/science, +/area/shuttle/runabout) +"acs" = ( +/obj/machinery/vending/loadout/gadget, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"acu" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/caravan) +"acv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"acw" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"acx" = ( +/obj/structure/transit_tube/station{ + automatic_launch_time = 40 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"acy" = ( +/obj/structure/flora/pottedplant/smalltree, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"acz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/prepainted/cargo, +/area/shuttle/udang/main) +"acA" = ( +/obj/machinery/door/airlock/glass{ + name = "Showers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"acC" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"acD" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/wall, +/area/shuttle/udang/main) +"acE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"acF" = ( +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"acG" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"acH" = ( +/obj/structure/outcrop, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/pads) +"acI" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/floor/snow, +/area/tradeport/cyndishow) +"acJ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"acK" = ( +/obj/structure/bed/chair/bay/chair/padded/teal, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"acL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/commons) +"acM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/item/gun/ballistic/automatic/as24{ + desc = "Never ask to speak to the manager."; + name = "Kate" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndi) +"acN" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 4; + id = "spine_outbound" + }, +/turf/simulated/floor/plating, +/area/tradeport/spine) +"acO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"acP" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = list(160); + req_one_access = null + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"acQ" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradestarshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/shuttle/plating, +/area/shuttle/trade_ship/general) +"acR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"acS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/r_wall, +/area/tradeport) +"acT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/space) +"acU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"acV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"acW" = ( +/obj/machinery/suit_storage_unit/syndicate, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"acX" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"acZ" = ( +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "storeshutter1" + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/facility) +"ada" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + id = "tradeportshutters"; + name = "remote shutter control"; + pixel_x = 30; + req_access = list(160) + }, +/turf/simulated/floor/carpet/bcarpet, +/area/shuttle/trade_ship/general) +"adb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/air_alarm/alarms_hidden/north_mount, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"adc" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/vip) +"add" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"ade" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/warning/airlock{ + pixel_x = -32 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"adg" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + name = "Nebula Commercial District" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"adh" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"adi" = ( +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/spine) +"adj" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"adk" = ( +/obj/machinery/camera{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"adl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"adm" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/space, +/area/space) +"adn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/tradeport/pads) +"ado" = ( +/obj/structure/fireaxecabinet{ + pixel_y = 32; + req_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"adp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/alien, +/obj/item/phone, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"adq" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8; + frequency = 8018; + id_tag = "tradeport_hangar_dock" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"adr" = ( +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"ads" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/sector/nebula_tradeport/comroom) +"adt" = ( +/obj/structure/barricade{ + icon_state = null; + name = "stairs" + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/tradeport/cyndishow) +"adv" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "storeshutter3"; + pixel_x = 24; + req_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"adw" = ( +/obj/structure/toilet, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"adx" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "trade_docks_2" + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor, +/area/sector/nebula_tradeport/engineering) +"ady" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet, +/obj/item/clothing/suit/storage/hooded/wintercoat/cosmic, +/obj/item/clothing/suit/storage/hooded/wintercoat/cosmic, +/obj/item/clothing/suit/storage/toggle/heated/ronincoat, +/obj/item/clothing/suit/storage/hooded/wintercoat/ratvar, +/obj/item/clothing/shoes/fake_brass, +/obj/item/clothing/suit/storage/hooded/cloak/goliath, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"adz" = ( +/obj/structure/flora/pumpkin/carved/owo, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"adA" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/dock) +"adC" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/tug) +"adD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"adH" = ( +/obj/machinery/button/remote/blast_door{ + id = "VIP Airlock2"; + pixel_x = 23 + }, +/obj/machinery/door/blast/regular{ + dir = 8; + id = "VIP Airlock2" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"adI" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "trade_docks_2"; + pixel_x = -8; + pixel_y = 28 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -25; + pixel_y = 25 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor, +/area/sector/nebula_tradeport/engineering) +"adJ" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"adK" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/outdoors/beach/sand/desert/indoors, +/area/tradeport/safarizoo) +"adL" = ( +/obj/machinery/atm{ + pixel_y = 27 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"adN" = ( +/obj/item/reagent_containers/food/snacks/lobster, +/obj/item/reagent_containers/food/snacks/lobster, +/obj/item/reagent_containers/food/snacks/lobster, +/obj/item/reagent_containers/food/snacks/lobster, +/obj/item/reagent_containers/food/snacks/lobster, +/obj/item/reagent_containers/food/snacks/lobster, +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"adO" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/lythios43c, +/area/tradeport/spine) +"adQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"adS" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "storeshutter2"; + pixel_x = 24; + req_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"adT" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"adU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch{ + name = "Tug Airtight Hatch"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoorc0"; + id = "tugdoor2"; + name = "Tug hauler shuttle Airlock"; + opacity = 0 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"adV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"adW" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access = list(160); + req_one_access = null + }, +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/tradeport/facility) +"adY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/prepainted/science, +/area/shuttle/runabout) +"adZ" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/structure/marker_beacon/yellow, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"aea" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aeb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aec" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/structure/cable/cyan{ + icon_state = "2-8"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aed" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aee" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 4; + pixel_x = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aef" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/closet/largecardboard, +/obj/item/retail_scanner, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aeg" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aeh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aei" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"aej" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 4; + pixel_x = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aek" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/vent{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/shuttle/trade_ship/general) +"ael" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/reinforced, +/area/sector/nebula_tradeport/dock2) +"aen" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aeo" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/shuttle/adventurer) +"aep" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aeq" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced, +/obj/item/hardsuit/internalaffairs, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aer" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aes" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aet" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/security) +"aeu" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aev" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"aew" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/space, +/area/space) +"aex" = ( +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"aey" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aeA" = ( +/obj/structure/table/alien, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite{ + last_battery_percent = 100 + }, +/obj/machinery/newscaster{ + pixel_y = 35 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"aeC" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aeD" = ( +/turf/simulated/wall/r_wall, +/area/tradeport) +"aeF" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump4c"; + name = "Nebula Pump Controller"; + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aeG" = ( +/obj/structure/flora/pottedplant/subterranean, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aeH" = ( +/obj/machinery/access_button{ + command = "cycle_int"; + frequency = 8018; + master_tag = "trade_space_lock"; + pixel_x = -25; + pixel_y = -5 + }, +/obj/machinery/door/airlock/glass_external{ + name = "Ship Hatch" + }, +/obj/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aeI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aeJ" = ( +/obj/structure/sign/atmos_plasma{ + desc = "WARNING! Plasma flow tube nearby."; + name = "Pump Six" + }, +/turf/simulated/wall/r_wall, +/area/tradeport/pads) +"aeK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aeL" = ( +/obj/machinery/gear_painter, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aeM" = ( +/obj/structure/curtain/open/shower/engineering, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom/holo2) +"aeN" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atm{ + pixel_y = 27 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aeO" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/alien, +/obj/item/folder/blue_captain, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"aeP" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aeQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aeR" = ( +/obj/structure/table/standard, +/obj/item/storage/box/glasses/square, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet, +/area/shuttle/trade_ship/general) +"aeS" = ( +/obj/structure/table/glass, +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"aeT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aeU" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aeV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump3d"; + name = "Nebula Pump Controller"; + pixel_x = -25 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aeW" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade"; + name = "Shop Shutters"; + opacity = 0 + }, +/obj/structure/table/marble, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/item/deskbell{ + pixel_x = -7; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aeX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aeY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/tradeport/commons) +"aeZ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tradeport/spine) +"afa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"afb" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/door/window/brigdoor/eastleft, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"afc" = ( +/obj/structure/table/steel_reinforced, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/lightreplacer, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/reagent_containers/spray/cleaner/drone, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"afd" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"afg" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/media/jukebox{ + state_base = "darkjuke" + }, +/obj/effect/floor_decal/spline/fancy/wood/three_quarters, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"afh" = ( +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/blue, +/obj/item/clothing/gloves/brown, +/obj/item/clothing/gloves/captain, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/green, +/obj/item/clothing/gloves/grey, +/obj/item/clothing/gloves/light_brown, +/obj/item/clothing/gloves/purple, +/obj/item/clothing/gloves/rainbow, +/obj/item/clothing/gloves/swat, +/obj/item/clothing/gloves/white, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"afi" = ( +/obj/structure/fence/door/locked, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/pads) +"afj" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"afk" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"afl" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button{ + command = "cycle_ext"; + frequency = 1380; + pixel_x = 5; + pixel_y = 25; + req_access = list(160) + }, +/obj/machinery/door/airlock/glass_external{ + name = "Nebula Gas - Employees Only" + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"afm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"afn" = ( +/obj/structure/catwalk, +/obj/machinery/camera{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/space) +"afo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/mob/living/bot/farmbot{ + desc = "Stupid bot. You make me look bad."; + name = "Eustace"; + on = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"afp" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "trade_docks_2" + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/sector/nebula_tradeport/engineering) +"afr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"afs" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"afu" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"afv" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "safari"; + name = "Safari Shutters"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/machinery/button/holosign{ + id = "safarisign"; + pixel_x = -26; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"afw" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"afy" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"afA" = ( +/obj/structure/metal_edge, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"afB" = ( +/obj/effect/floor_decal/industrial/halfstair{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"afC" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/orange{ + icon_state = "1-4"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"afD" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/shuttle/caravan) +"afE" = ( +/obj/structure/coatrack, +/obj/machinery/newscaster{ + pixel_x = -35; + pixel_y = 3 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"afF" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"afH" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + name = "Nebula Commercial District" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"afI" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/snow, +/area/tradeport/cyndishow) +"afJ" = ( +/obj/machinery/vending/assist{ + contraband = null; + name = "Old Vending Machine"; + products = list(/obj/item/assembly/prox_sensor = 5, /obj/item/assembly/signaler = 4, /obj/item/assembly/infra = 4, /obj/item/assembly/prox_sensor = 4, /obj/item/handcuffs = 8, /obj/item/flash = 4, /obj/item/cartridge/signal = 4, /obj/item/clothing/glasses/sunglasses = 4) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"afK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/biogenerator, +/turf/simulated/floor/grass, +/area/tradeport) +"afM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "4-10" + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"afP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/cryopod/robot/door/gateway, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commhall) +"afS" = ( +/obj/machinery/atmospherics/pipe/tank/phoron, +/obj/structure/window/reinforced/tinted, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/plating, +/area/shuttle/trade_ship/general) +"afU" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"afV" = ( +/obj/machinery/door/window/westleft{ + name = "Storefront"; + req_access = list(160) + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade"; + name = "Shop Shutters"; + opacity = 0 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"afW" = ( +/obj/machinery/door/window/westleft{ + dir = 2 + }, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"afX" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"afY" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"afZ" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/facility) +"aga" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"agb" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 8018; + id_tag = "trade_space_lock"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"agc" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"agd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"age" = ( +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = 24 + }, +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"agf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"agh" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump3a"; + landmark_tag = "nebula_pad_3a"; + name = "Nebula Pad 3a" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"agi" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/trade_ship/cockpit) +"agj" = ( +/obj/machinery/door/airlock/glass/medical{ + name = "Medical Bay"; + req_access = list(160); + req_one_access = null + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"agl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"agm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"ago" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"agp" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"agq" = ( +/obj/effect/floor_decal/sign/dock/one, +/turf/simulated/wall/r_wall, +/area/tradeport/commons) +"agr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"ags" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/pen{ + pixel_y = 10; + pixel_x = 7 + }, +/obj/item/pen{ + pixel_y = 10; + pixel_x = 7 + }, +/obj/item/pen{ + pixel_y = 10; + pixel_x = 7 + }, +/obj/item/pen{ + pixel_y = 10; + pixel_x = 7 + }, +/obj/item/pen{ + pixel_y = 10; + pixel_x = 7 + }, +/obj/item/pen{ + pixel_y = 10; + pixel_x = 7 + }, +/obj/item/pen{ + pixel_y = 10; + pixel_x = 7 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"agt" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"agu" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom/trader{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/closet/crate, +/obj/fiftyspawner/bcarpet, +/obj/fiftyspawner/blucarpet, +/obj/fiftyspawner/arcadecarpet, +/obj/fiftyspawner/carpet, +/obj/fiftyspawner/gaycarpet, +/obj/fiftyspawner/oracarpet, +/obj/fiftyspawner/purcarpet, +/obj/fiftyspawner/sblucarpet, +/obj/fiftyspawner/tealcarpet, +/obj/fiftyspawner/turcarpet, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"agv" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"agw" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/old_tile/beige, +/area/sector/nebula_tradeport/medical/public) +"agx" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/grass, +/area/tradeport) +"agy" = ( +/obj/machinery/cryopod/robot/trade, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"agz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"agA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"agC" = ( +/obj/structure/fence/corner{ + dir = 5 + }, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/pads) +"agD" = ( +/obj/machinery/holosign/bar{ + id = "cyndisign" + }, +/turf/simulated/wall/r_wall, +/area/tradeport/commons) +"agE" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/mask/warmer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/tradeport/spine) +"agF" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/poster, +/obj/item/poster, +/obj/item/poster, +/obj/item/poster, +/obj/item/poster, +/obj/item/poster, +/obj/item/poster, +/obj/item/poster, +/obj/item/poster, +/obj/item/poster, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"agG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/wall/r_wall, +/area/space) +"agH" = ( +/turf/simulated/floor/tiled, +/area/tradeport/commons) +"agI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/cafeteria) +"agJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/cyndishow) +"agK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"agM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"agN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"agP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"agQ" = ( +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"agR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"agT" = ( +/turf/simulated/floor/plating, +/area/shuttle/tug) +"agW" = ( +/obj/machinery/telecomms/relay/preset/telecomms, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/adventurer) +"agX" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate, +/obj/item/stolenpackageplus, +/obj/item/stolenpackageplus, +/obj/item/stolenpackageplus, +/obj/item/stolenpackageplus, +/obj/item/stolenpackageplus, +/obj/item/stolenpackageplus, +/obj/item/stolenpackageplus, +/obj/item/stolenpackageplus, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"agY" = ( +/obj/structure/bed/chair/sofa/beige/right{ + dir = 4 + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "udang_cabin1" + }, +/obj/structure/window/reinforced/polarized{ + id = "udang_cabin1" + }, +/obj/machinery/button/windowtint{ + pixel_y = -12; + pixel_x = 13; + id = "udang_cabin1" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/udang/main) +"aha" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"ahb" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"ahc" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"ahd" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + light_range = 12 + }, +/turf/simulated/floor/reinforced, +/area/sector/nebula_tradeport/dock2) +"ahe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/shuttle/utilitymicro) +"ahf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"ahg" = ( +/obj/machinery/door/airlock/silver{ + name = "Restroom" + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/trade_ship/cockpit) +"ahh" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"ahi" = ( +/obj/machinery/light, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"ahk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/computer/shuttle_control/explore/utilitymicro, +/obj/machinery/air_alarm/alarms_hidden/north_mount, +/obj/item/gps/internal/base{ + name = "UtilityMicro beacon"; + gps_tag = "UTILITY" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/utilitymicro) +"ahl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/card/emag{ + desc = "It's a card with a magnetic strip attached to some circuitry. Looks really flimsy, like it'll fall apart at any moment."; + name = "discount cryptographic sequencer"; + uses = 1 + }, +/obj/structure/poster{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"ahm" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"ahn" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + landmark_tag = "nebula_space_SW"; + name = "Near Nebulous Gas (SW)" + }, +/turf/space, +/area/space) +"ahp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/wall, +/area/shuttle/udang/main) +"ahq" = ( +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"ahr" = ( +/obj/machinery/power/apc/alarms_hidden/south_mount{ + cell_type = /obj/item/cell/super; + req_access = list(160) + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"ahs" = ( +/obj/structure/closet/secure_closet/guncabinet{ + anchored = 1; + req_access = list(160); + req_one_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aht" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump4a"; + name = "Nebula Pump Controller"; + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"ahu" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"ahv" = ( +/obj/item/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/cyan, +/obj/machinery/power/apc/hyper/south_mount, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"ahw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4; + old_wall = 1 + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"ahx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"ahy" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"ahz" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/poster{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/udang/main) +"ahB" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"ahC" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump1b"; + name = "Nebula Pump Controller"; + pixel_x = 25 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"ahD" = ( +/obj/structure/cryofeed{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"ahE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/airlock_sensor{ + pixel_y = -25 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"ahF" = ( +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/wmarble, +/obj/fiftyspawner/bmarble, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"ahG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/medical/public) +"ahH" = ( +/obj/machinery/light/flamp, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"ahI" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/remote/blast_door{ + dir = 4; + pixel_y = 9; + id = "Adventurer2"; + name = "Adventurer Front Door" + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + pixel_y = -8; + id = "adventurer1"; + name = "Adventurer Back Door" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/adventurer) +"ahJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"ahK" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"ahL" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"ahM" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"ahN" = ( +/obj/structure/closet/crate/freezer{ + name = "exotic meats freezer" + }, +/obj/random/meat/no_sapient, +/obj/random/meat/no_sapient, +/obj/random/meat/no_sapient, +/obj/random/meat/no_sapient, +/obj/random/meat/no_sapient, +/obj/random/meat/no_sapient, +/obj/structure/window/reinforced, +/obj/item/reagent_containers/food/snacks/xenomeat, +/obj/item/reagent_containers/food/snacks/xenomeat, +/obj/item/reagent_containers/food/snacks/meat/worm, +/obj/item/reagent_containers/food/snacks/bearmeat, +/obj/item/reagent_containers/food/snacks/bearmeat, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"ahO" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"ahR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"ahS" = ( +/obj/structure/table/hardwoodtable, +/obj/item/toy/figure/captain, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"ahT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"ahU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"ahV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"ahW" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "safari"; + name = "Safari Clerk Shutters" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"ahX" = ( +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/old_tile/beige, +/area/shuttle/caravan) +"ahY" = ( +/obj/structure/table/woodentable, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"ahZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/random/maintenance/clean, +/obj/structure/sink{ + pixel_y = 19 + }, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"aia" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/pads) +"aib" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/wall/r_wall, +/area/tradeport/commons) +"aic" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aid" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aie" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -14 + }, +/obj/structure/mirror/long/left_broke{ + dir = 8; + pixel_x = -29 + }, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"aif" = ( +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aig" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aih" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aij" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"ail" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aim" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"ain" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/closet/walllocker_double/west, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/storage/box/glasses/meta, +/obj/item/storage/single_use/mre/random, +/obj/item/storage/single_use/mre/random, +/obj/item/storage/single_use/mre/random, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"aio" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aip" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aiq" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"air" = ( +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"ais" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"ait" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump3d"; + landmark_tag = "nebula_pad_3d"; + name = "Nebula Pad 3d" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aiu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aiv" = ( +/obj/structure/catwalk, +/turf/space, +/area/space) +"aiw" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + landmark_tag = "nebula_space_S"; + name = "Near Nebulous Gas (S)" + }, +/turf/space, +/area/space) +"aiz" = ( +/obj/machinery/computer/ship/helm{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = -27; + pixel_x = 4; + id_tag = "tradeport_utilitymicro_docker" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/utilitymicro) +"aiA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/cyndishow) +"aiB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aiC" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/pads) +"aiD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aiE" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade-ship-secure"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/machinery/button/remote/blast_door{ + id = "trade-ship-secure"; + name = "Cargo Bay Shutters"; + pixel_x = -7; + pixel_y = 24; + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/button/remote/blast_door{ + id = "trade"; + name = "Shop Shutters"; + pixel_x = 6; + pixel_y = 24; + req_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aiG" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aiH" = ( +/obj/structure/sink/kitchen{ + pixel_y = 17 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"aiI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "rare item display case"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/item/sword/fluff/joanaria/scisword, +/obj/machinery/camera{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tradeport/cyndishow) +"aiJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/comroom) +"aiK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aiL" = ( +/obj/effect/debris/cleanable/blood/drip, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"aiM" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aiN" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/shuttle/plating, +/area/shuttle/trade_ship/general) +"aiO" = ( +/obj/structure/window/reinforced, +/obj/structure/table/woodentable, +/obj/item/material/kitchen/rollingpin/durasteel, +/obj/item/material/knife/butch/plasteel, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aiP" = ( +/obj/machinery/door/window/westleft{ + dir = 2 + }, +/obj/machinery/shower{ + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/curtain/open/shower{ + pixel_y = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/commons) +"aiQ" = ( +/obj/overmap/entity/visitable/sector/trade_post, +/turf/space, +/area/space) +"aiR" = ( +/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/tiled/red, +/area/shuttle/trade_ship/general) +"aiS" = ( +/obj/machinery/door/blast/regular{ + id = "tugdoor3" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aiU" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/toy/syndicateballoon, +/obj/item/toy/syndicateballoon, +/obj/item/toy/syndicateballoon, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aiW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lightpost, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"aiX" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aiY" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/obj/structure/window/wooden{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/obj/machinery/photocopier/faxmachine{ + department = "Udang Trade Shuttle"; + pixel_y = 18 + }, +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/udang/main) +"aiZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aja" = ( +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"ajb" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "rare item display case"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/item/gun/energy/decloner, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"ajc" = ( +/obj/machinery/light_switch{ + dir = 1 + }, +/turf/simulated/wall, +/area/tradeport/commons) +"aje" = ( +/turf/simulated/wall/prepainted/engineering, +/area/shuttle/udang/main) +"ajf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/gear_painter, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"ajg" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock/sandstone{ + frequency = 1382; + id_tag = "safari_access"; + name = "The Safari Zone"; + req_access = list(160); + tag = "safari_door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tradeport/safari) +"ajh" = ( +/obj/item/radio/intercom/trader{ + pixel_y = -25 + }, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"aji" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"ajk" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/engineering) +"ajl" = ( +/turf/simulated/floor/plating, +/area/tradeport/expansion) +"ajm" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"ajn" = ( +/obj/machinery/light, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/tradeport/engineering) +"ajo" = ( +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/cockpit) +"ajp" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"ajr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"ajs" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/binary/pump{ + dir = 8; + name = "air to distro" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"ajt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/wall/r_wall, +/area/tradeport/commons) +"ajv" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"ajw" = ( +/obj/structure/medical_stand, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/medical) +"ajx" = ( +/obj/structure/metal_edge, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/metal_edge{ + pixel_x = -8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"ajy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"ajz" = ( +/turf/simulated/wall/prepainted/engineering, +/area/shuttle/udang/cockpit) +"ajA" = ( +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 1; + frequency = 1380; + master_tag = "tradeport_udang_dock"; + pixel_x = 24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/commons) +"ajB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"ajC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"ajD" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/plating, +/area/tradeport/pads) +"ajE" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/remote/blast_door{ + id = "tradebridgeshutters"; + name = "remote shutter control"; + pixel_x = 30; + req_access = list(160) + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-09"; + name = "Esteban"; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"ajF" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndishow) +"ajG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"ajH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"ajI" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/suit_cycler, +/turf/simulated/floor/tiled/techfloor/lythios43c, +/area/tradeport/spine) +"ajJ" = ( +/obj/structure/filingcabinet/tall, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"ajK" = ( +/obj/machinery/vending/glukoz{ + prices = list() + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"ajL" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/light{ + light_range = 12 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/reinforced, +/area/sector/nebula_tradeport/dock2) +"ajN" = ( +/obj/structure/cable/pink{ + icon_state = "0-8" + }, +/obj/machinery/power/terminal, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"ajO" = ( +/obj/structure/bed/chair/comfy, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"ajR" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"ajS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/spine) +"ajT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"ajU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"ajV" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/reagent_containers/syringe/drugs, +/obj/item/reagent_containers/syringe/drugs, +/obj/item/reagent_containers/syringe/drugs, +/obj/item/reagent_containers/syringe/drugs, +/obj/random/unidentified_medicine/drug_den, +/obj/random/unidentified_medicine/drug_den, +/obj/random/unidentified_medicine/drug_den, +/obj/random/unidentified_medicine/drug_den, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"ajW" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/gun/energy/netgun, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"ajX" = ( +/obj/machinery/suit_storage_unit/syndicate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"ajY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"ajZ" = ( +/obj/machinery/camera{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"akb" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/whetstone, +/obj/item/whetstone, +/obj/item/whetstone, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"akd" = ( +/turf/simulated/wall/r_wall, +/area/space) +"ake" = ( +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"akf" = ( +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"akg" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"akh" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + light_range = 12 + }, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aki" = ( +/turf/simulated/wall, +/area/tradeport/atmospherics) +"akj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"akk" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump4a"; + landmark_tag = "nebula_pad_4a"; + name = "Nebula Pad 4a" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"akl" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/shuttle/trade_ship/general) +"akm" = ( +/obj/structure/bed/chair/bay/comfy/captain{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/cockpit) +"akn" = ( +/obj/structure/lattice, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/space/basic, +/area/space) +"ako" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"akp" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/item/radio/intercom/trader{ + dir = 1; + pixel_y = 25 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"akq" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"akr" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/flash, +/obj/item/flash, +/obj/item/reagent_containers/spray/pepper, +/obj/item/reagent_containers/spray/pepper, +/obj/item/melee/telebaton, +/obj/item/melee/telebaton, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aks" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/tug) +"akt" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/alien, +/obj/structure/poster{ + pixel_x = 32 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/pen/click, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"aku" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/bed/chair/bay/chair/padded/red/smallnest, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"akv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/space) +"akw" = ( +/obj/structure/outcrop, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/exterior) +"akx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + dir = 8; + frequency = 8018; + id = "pumpone"; + name = "Pump One"; + target_pressure = 15000 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aky" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/sleeper/survival_pod, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"akz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -14 + }, +/obj/structure/mirror/long/right_broke{ + dir = 8; + pixel_x = -29 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"akA" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"akD" = ( +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commhall) +"akE" = ( +/obj/machinery/computer/ship/sensors/adv{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"akG" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Nebula Gas - Warehouse"; + req_access = list(160) + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"akH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"akI" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"akK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"akM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"akN" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/gps/security, +/obj/item/gps/security, +/obj/item/clothing/under/rank/security2, +/obj/item/clothing/under/rank/security2, +/obj/item/clothing/head/soft/red, +/obj/item/clothing/head/soft/red, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"akO" = ( +/obj/structure/cable/green, +/obj/machinery/light, +/obj/structure/table/steel_reinforced, +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/obj/machinery/power/apc/alarms_hidden/south_mount, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/adventurer) +"akP" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"akQ" = ( +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "storeshutter1" + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/facility) +"akR" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "cockpit hatch" + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"akS" = ( +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"akT" = ( +/obj/structure/window/reinforced, +/obj/random/humanoidremains, +/turf/simulated/floor/outdoors/beach/sand/desert, +/area/tradeport/cyndishow) +"akU" = ( +/obj/structure/transit_tube/station{ + automatic_launch_time = 40 + }, +/obj/structure/transit_tube_pod{ + dir = 4; + move_speed = 40 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"akV" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade_ship/general) +"akX" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"akY" = ( +/obj/structure/metal_edge, +/obj/structure/cable/orange{ + icon_state = "5-10" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"ala" = ( +/obj/machinery/holopad/ship, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom/holo2) +"alb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"alc" = ( +/obj/machinery/door/airlock/glass_external{ + name = "Nebula Gas - External Access" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "trade_docks_2"; + name = "internal access button"; + pixel_y = -24 + }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "trade_docks_2"; + name = "external access button"; + pixel_y = -24 + }, +/turf/simulated/floor, +/area/sector/nebula_tradeport/engineering) +"ald" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"ale" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"alf" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"alg" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"ali" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"alj" = ( +/obj/structure/table/alien, +/obj/item/toy/plushie/bear_bloody{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"all" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/largecrate/animal/corgi, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"alm" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/lightpost, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"aln" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"alo" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"alq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/spine) +"als" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/camera{ + dir = 4 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"alu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/bed/chair/comfy, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"alv" = ( +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"alw" = ( +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/light, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"alx" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/rust, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aly" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"alz" = ( +/obj/structure/closet/crate, +/obj/item/bedsheet/cosmos, +/obj/item/bedsheet/cosmos, +/obj/item/bee_pack, +/obj/item/bikehorn, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"alA" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"alB" = ( +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"alD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/structure/statue/silver/janitor{ + desc = "This statue commemorates Farnsworth, the legendary Nebula Gas janitor. Even posthumously, Farnsworth retains the longest consecutive run of employee of the month awards."; + name = "Employee of the Month" + }, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"alE" = ( +/obj/machinery/button/remote/blast_door{ + id = "Runabout'"; + name = "Runabout Door"; + pixel_y = 29 + }, +/obj/machinery/door/airlock/hatch{ + name = "Runabout airtight Hatch"; + req_one_access = null + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor1"; + id = "Runabout'"; + name = "Teshari Runabout Airlock"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/runabout) +"alF" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"alG" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/radio/intercom/trader{ + pixel_y = -25 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"alH" = ( +/obj/machinery/vending/medical{ + density = 0; + pixel_y = -32; + req_access = null + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"alJ" = ( +/obj/machinery/door/airlock/glass_external{ + name = "Nebula Gas - External Access" + }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "trade_docks"; + name = "external access button"; + pixel_y = -24 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"alK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/commons) +"alL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"alM" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"alN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"alO" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"alP" = ( +/obj/structure/sign/botany, +/turf/simulated/wall, +/area/tradeport) +"alQ" = ( +/obj/landmark/spawnpoint/latejoin/tradeport, +/obj/machinery/computer/cryopod{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"alR" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"alU" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"alV" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"alW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow, +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"alX" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"alY" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"alZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/item/storage/secure/briefcase, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"amb" = ( +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"amc" = ( +/obj/structure/bed/chair/bay/chair/padded/teal, +/turf/simulated/floor/glass/reinforced, +/area/sector/nebula_tradeport/engineering) +"amd" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"ame" = ( +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/udang/cockpit) +"amg" = ( +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + frequency = 8018; + id = "mainfuel"; + name = "main fuel pump"; + target_pressure = 15000 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"amh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "storeshutter2" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"ami" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"amj" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump5b"; + name = "Nebula Pump Controller"; + pixel_x = 25 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"amk" = ( +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 9 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aml" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/space) +"amm" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"amo" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"amp" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade"; + name = "Shop Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/cash_register/trader{ + desc = "Swipe your ID card to make purchases electronically. There is a note at the bottom. Press Custom Order. Enter reason and cost. Then have customer swipe their card. "; + dir = 4; + name = "Trader Register" + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"amq" = ( +/obj/effect/floor_decal/corner/grey/border, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"amr" = ( +/obj/structure/flora/pumpkin/carved/scream, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"ams" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"amt" = ( +/obj/structure/closet/walllocker_double/east, +/obj/machinery/light{ + dir = 4; + old_wall = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"amu" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"amv" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"amy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"amz" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/safari) +"amB" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"amC" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"amD" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/paintkit, +/obj/random/paintkit, +/obj/random/paintkit, +/obj/random/paintkit, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"amE" = ( +/obj/machinery/door/firedoor, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"amF" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/syndie/c4explosive, +/obj/item/syndie/c4explosive, +/obj/item/syndie/c4explosive, +/obj/item/syndie/c4explosive, +/obj/item/syndie/c4explosive, +/obj/item/syndie/c4explosive, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"amI" = ( +/obj/machinery/vending/sovietsoda{ + contraband = list(/obj/item/reagent_containers/food/drinks/cans/crystalgibb = 20); + desc = "An old sweet water vending machine. It looks like someone crossed out the D and replaced it with an F."; + name = "BOFA"; + products = list(/obj/item/reagent_containers/food/drinks/cans/thirteenloko = 20) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"amJ" = ( +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"amK" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/photocopier/faxmachine{ + department = "Beruang Trade Shuttle" + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/carpet/bcarpet, +/area/shuttle/trade_ship/general) +"amL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/wall/prepainted, +/area/shuttle/utilitymicro) +"amM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"amN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"amO" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"amP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"amQ" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"amR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"amT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"amU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"amV" = ( +/obj/machinery/door/airlock/external/glass{ + req_access = list(160) + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button{ + command = "cycle_int"; + pixel_x = 10; + pixel_y = -25; + req_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tradeport/engineering) +"amX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"amY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = 27; + id_tag = "tradeport_utilitymicro_dock" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"amZ" = ( +/obj/machinery/door/airlock/external/glass{ + req_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"ana" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"anb" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"anc" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump1a"; + name = "Nebula Pump Controller"; + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"ane" = ( +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"anf" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"anh" = ( +/obj/machinery/vending/loadout/costume, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"ani" = ( +/obj/machinery/door/window/westleft{ + dir = 2 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cyndi"; + name = "C&K Shutters" + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndi) +"anj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"ank" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"anm" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradestarshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/shuttle/plating, +/area/shuttle/trade_ship/general) +"ann" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"ano" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"anp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"anq" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/commons) +"anr" = ( +/obj/structure/flora/tree/jungle_small, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"ans" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"ant" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"anv" = ( +/obj/effect/paint/purple, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"anw" = ( +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"anx" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/orange{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/adventurer) +"any" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"anz" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/space, +/area/tradeport/spine) +"anA" = ( +/obj/machinery/cryopod/robot/door/gateway, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commhall) +"anB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled, +/area/tradeport/spine) +"anC" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/largecrate/vehicle/bike, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"anD" = ( +/obj/structure/table/standard, +/obj/item/soap/deluxe, +/obj/item/soap/deluxe, +/obj/item/soap/deluxe, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"anE" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"anF" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/table/bench/wooden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/caravan) +"anG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "trade_pumps"; + pixel_x = -25; + pixel_y = -26 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"anI" = ( +/obj/machinery/vending/loadout, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"anJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"anK" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"anM" = ( +/obj/machinery/light, +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"anN" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/sector/nebula_tradeport/dock2) +"anO" = ( +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + dir = 8; + frequency = 8018; + id = "pumpthree"; + name = "Pump Three"; + target_pressure = 15000 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"anP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"anS" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/computer/ship/engines, +/obj/structure/railing/grey, +/obj/machinery/air_alarm/alarms_hidden/north_mount, +/turf/simulated/floor/tiled/monodark, +/area/shuttle/runabout) +"anT" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/panic_button{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/utilitymicro) +"anV" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"anW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"anX" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"anY" = ( +/obj/machinery/door/airlock/security, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"anZ" = ( +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aoa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aoc" = ( +/turf/simulated/wall/r_wall/prepainted/security, +/area/sector/nebula_tradeport/security) +"aod" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"aoe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/button/remote/blast_door{ + id = "caravan2"; + name = "Caravan Front Door"; + pixel_x = -25 + }, +/obj/machinery/door/airlock/hatch{ + name = "Caravan Airtight Hatch"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoorc0"; + id = "caravan2"; + name = "Spacenat Caravan Airlock"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/caravan) +"aof" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aog" = ( +/turf/simulated/wall/prepainted, +/area/shuttle/tug) +"aoh" = ( +/obj/structure/table/hardwoodtable, +/obj/item/deck/cards, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aoi" = ( +/obj/structure/table/bench/wooden, +/obj/structure/flora/pottedplant/tall{ + pixel_y = 14 + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "udang_cabin2"; + pixel_x = 5 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/udang/main) +"aoj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aok" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aol" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + name = "Ship Hatch" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aom" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/pizzabox/meat{ + pixel_y = 8 + }, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"aon" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/reinforced/airmix, +/area/tradeport/atmospherics) +"aoo" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"aop" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/cyndi) +"aoq" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + name = "Nebula Commercial District" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aor" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aos" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aot" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump2b"; + name = "Nebula Pump Controller"; + pixel_x = -25 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aou" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8; + frequency = 1380; + id_tag = "tradeport_hangar_dock_pump" + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aov" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aow" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aox" = ( +/obj/machinery/door/airlock/glass_external{ + name = "Ship Hatch" + }, +/obj/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aoy" = ( +/obj/structure/table/glass, +/obj/item/radio/intercom/trader{ + dir = 1; + pixel_y = 25 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/toy/plushie/bear_panda, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aoz" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/inflatable/door, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aoA" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/prepainted/cargo, +/area/shuttle/caravan) +"aoB" = ( +/obj/machinery/air_sensor{ + frequency = 1443; + id_tag = "air_sensor"; + output = 7 + }, +/turf/simulated/floor/reinforced/airmix, +/area/tradeport/atmospherics) +"aoC" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aoD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aoE" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aoF" = ( +/obj/spawner/window/borosillicate/full/firelocks, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"aoG" = ( +/obj/machinery/holopad/ship, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom/holo1) +"aoH" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"aoI" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aoJ" = ( +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aoK" = ( +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/rack/steel, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northleft, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aoN" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aoO" = ( +/turf/simulated/floor/reinforced/airmix, +/area/tradeport/atmospherics) +"aoP" = ( +/obj/structure/table/marble, +/obj/machinery/microwave, +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"aoQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"aoR" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aoS" = ( +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = 24 + }, +/obj/structure/dogbed{ + name = "pet bed" + }, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"aoT" = ( +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aoV" = ( +/obj/structure/toilet, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/trade_ship/cockpit) +"aoW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"aoX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"aoZ" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"apb" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/light, +/turf/simulated/wall/r_wall, +/area/tradeport/commhall) +"apc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"apd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"ape" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"apg" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aph" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/melee/spike, +/obj/item/melee/spike, +/obj/item/melee/spike, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"api" = ( +/obj/structure/bed/chair/sofa/brown, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"apj" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/commhall) +"apk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"apm" = ( +/turf/simulated/wall/prepainted/cargo, +/area/shuttle/udang/main) +"apn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"apo" = ( +/obj/structure/metal_edge{ + pixel_x = -8 + }, +/obj/structure/metal_edge, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"app" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/halfstair{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aps" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/bed/chair/comfy, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"apt" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock/external/glass{ + icon_state = "door_locked"; + id_tag = "expansion_wing"; + locked = 1; + name = "Wing Expansion - Under Construction" + }, +/obj/structure/cable/yellow{ + 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/tradeport/commons) +"apu" = ( +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"apv" = ( +/obj/structure/metal_edge, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"apw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/silver{ + name = "Laundry Room" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"apx" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"apy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/commons) +"apz" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/alarms_hidden/east_mount, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"apB" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"apC" = ( +/obj/machinery/optable, +/obj/machinery/oxygen_pump/anesthetic{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"apD" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"apE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"apF" = ( +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/tradeport/commons) +"apG" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"apH" = ( +/obj/structure/table/alien, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"apI" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump3c"; + landmark_tag = "nebula_pad_3c"; + name = "Nebula Pad 3c" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"apJ" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/space) +"apK" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"apL" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/adventurer) +"apM" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack/shelf/steel, +/obj/item/gun/energy/frontier/taj, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"apN" = ( +/obj/machinery/door/window, +/obj/machinery/light{ + dir = 8; + light_range = 12; + old_wall = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"apQ" = ( +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + frequency = 8018; + id = "mainfuel"; + name = "main fuel pump"; + target_pressure = 15000; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"apR" = ( +/obj/structure/railing, +/mob/living/simple_mob/animal/passive/cow, +/turf/simulated/floor/outdoors/grass/heavy, +/area/tradeport/spine) +"apT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/tradeport) +"apU" = ( +/obj/overmap/entity/visitable/ship/landable/trade/tug, +/obj/effect/shuttle_landmark/triumph/trade/tug, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"apV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"apW" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"apY" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"apZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aqa" = ( +/obj/effect/floor_decal/industrial/halfstair{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aqb" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"aqc" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tradeport/spine) +"aqd" = ( +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aqe" = ( +/obj/machinery/camera{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aqf" = ( +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + dir = 4; + frequency = 8018; + id = "pumpfour"; + name = "Pump Four"; + target_pressure = 15000 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aqi" = ( +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + name = "Ship Hatch" + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "tradeport_hangar_docker"; + pixel_x = -25; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aqj" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall, +/area/tradeport/dock) +"aqk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/tradeport) +"aql" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Rapid Transit" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aqm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aqn" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/material/knife/durasteel{ + desc = "A hand sharpened knife, used for cutting valentine treats."; + name = "Leftie"; + pixel_x = 5 + }, +/obj/item/material/knife/machete/hatchet/durasteel{ + desc = "A powerfully sharp axe, crafted with love."; + name = "Rightie" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"aqo" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aqq" = ( +/obj/item/modular_computer/console/preset/civilian{ + dir = 1 + }, +/turf/simulated/floor/glass/reinforced, +/area/sector/nebula_tradeport/engineering) +"aqt" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aqu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aqv" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aqw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aqx" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump3b"; + name = "Nebula Pump Controller"; + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aqy" = ( +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aqz" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"aqA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aqB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aqC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aqE" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aqF" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aqG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"aqH" = ( +/obj/structure/table/rack/steel, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/pipe_dispenser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"aqI" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aqJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aqL" = ( +/obj/structure/flora/pottedplant/unusual{ + pixel_y = 20; + pixel_x = -15 + }, +/obj/random/alcohol, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"aqO" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/wall/prepainted, +/area/shuttle/adventurer) +"aqP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/shipsensors, +/turf/simulated/floor/plating, +/area/shuttle/adventurer) +"aqR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/exonet_node, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aqS" = ( +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/adventurer) +"aqT" = ( +/obj/structure/handrail, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "tradeport_udang_docker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aqU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aqV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass/medical{ + name = "Infirmary"; + req_one_access = null + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aqW" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aqX" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump5b"; + landmark_tag = "nebula_pad5b"; + name = "Nebula Pad 5b" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aqY" = ( +/obj/machinery/holopad, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"aqZ" = ( +/obj/structure/bed/chair/bay/comfy/captain{ + dir = 8 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/cockpit) +"ara" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access = list(160); + req_one_access = null + }, +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/tradeport/engineering) +"arc" = ( +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"ard" = ( +/obj/machinery/light/small/flicker, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"arf" = ( +/obj/machinery/atmospherics/pipe/tank/phoron, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"arg" = ( +/obj/machinery/light/flamp, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"arh" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump1b"; + landmark_tag = "nebula_pad_1b"; + name = "Nebula Pad 1b" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"ari" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"arj" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"ark" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/space) +"arl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + name = "Ship Hatch" + }, +/obj/machinery/access_button/airlock_exterior{ + frequency = 1380; + master_tag = "tradeport_hangar_docker"; + pixel_x = 25; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"arm" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aro" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"arp" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump2b"; + landmark_tag = "nebula_pad_2b"; + name = "Nebula Pad 2b" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"arq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"arr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 29 + }, +/obj/structure/bed/chair/sofa/black/corner, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"ars" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/safarizoo) +"art" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"aru" = ( +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/commons) +"arv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = 27; + id_tag = "tradeport_caravan_dock" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"arw" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 740.5 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"ary" = ( +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 740.5 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"arz" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"arA" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"arB" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"arC" = ( +/obj/machinery/door/window/westright{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/caravan) +"arD" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/wall/r_wall, +/area/tradeport/dock) +"arE" = ( +/obj/structure/table/marble, +/obj/random/alcohol, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"arF" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/tiled, +/area/tradeport/commons) +"arG" = ( +/turf/simulated/wall, +/area/tradeport) +"arH" = ( +/turf/simulated/wall/prepainted/medical, +/area/shuttle/adventurer) +"arI" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/plaque{ + desc = "Ancient tombs like these are common across multiple species. The final resting place of Ahten-Ka is a popular topic amongst modern occult enthusiasts, who still debate whether the strange occurrence at that cyclopean pyramid were in fact early instances of Low Frequency Wave interference on humankind." + }, +/turf/simulated/floor/outdoors/beach/sand/desert, +/area/tradeport/cyndishow) +"arJ" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"arL" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/adventurer) +"arM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"arN" = ( +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/spine) +"arO" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -25 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"arP" = ( +/turf/simulated/floor/outdoors/dirtlight, +/area/tradeport/cyndishow) +"arQ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"arR" = ( +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"arT" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/monodark, +/area/tradeport/commhall) +"arU" = ( +/obj/machinery/power/smes/buildable{ + charge = 15000; + cur_coils = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/adventurer) +"arV" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"arW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"arY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"arZ" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"asa" = ( +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/vip) +"asd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastright{ + name = "rare item display case"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/item/powersink, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"ase" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/obj/machinery/light/small/flicker{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"asf" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/space) +"asg" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/runabout) +"ash" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"asi" = ( +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"asj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/structure/flora/pottedplant/tall{ + pixel_y = 14 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/monodark, +/area/tradeport/commhall) +"ask" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack/shelf/steel, +/obj/item/reagent_containers/food/drinks/teapot{ + desc = "An elegant teapot. It simply oozes class. This one looks especially valuable."; + name = "antique teapot" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"asl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"asm" = ( +/obj/effect/floor_decal/borderfloorblack, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"aso" = ( +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"asp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"asq" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/pads) +"asr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"ass" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/halfstair{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"ast" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/cafeteria) +"asu" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"asw" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/sector/nebula_tradeport/dock2) +"asx" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8; + frequency = 8018; + id_tag = "tradeport_hangar_dock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"asy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"asB" = ( +/obj/machinery/light, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"asD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"asE" = ( +/obj/structure/catwalk, +/obj/structure/closet/emcloset, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"asF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"asG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"asH" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "tradeport_udang_dock"; + pixel_x = -26; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/commons) +"asK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/bed/chair/sofa/black, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"asL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"asM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/tradeport/commons) +"asN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"asO" = ( +/obj/structure/table/steel_reinforced, +/obj/item/flashlight/lamp, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"asP" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/facility) +"asQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/wall/prepainted/cargo, +/area/shuttle/caravan) +"asR" = ( +/obj/machinery/suit_storage_unit/syndicate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"asS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"asT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/button/remote/blast_door{ + id = "caravan1"; + name = "Caravan Back Door"; + pixel_x = 26 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoorc0"; + id = "caravan1"; + name = "Spacenat Caravan Airlock"; + opacity = 0 + }, +/obj/machinery/door/airlock/hatch{ + name = "Caravan Airtight Hatch"; + req_one_access = null + }, +/turf/simulated/floor/plating, +/area/shuttle/caravan) +"asV" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/floor_decal/industrial/halfstair, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"asX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"asZ" = ( +/obj/structure/loot_pile/surface/drone, +/turf/simulated/mineral/floor/vacuum, +/area/space) +"ata" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"atb" = ( +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/pads) +"atc" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"ate" = ( +/obj/machinery/door/airlock/external/glass{ + req_access = list(160) + }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button{ + command = "cycle_ext"; + pixel_x = -10; + pixel_y = 25; + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tradeport/engineering) +"atf" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/dock2) +"ath" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"ati" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"atj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"atk" = ( +/obj/structure/table/glass, +/obj/item/deck/cards{ + pixel_x = -12 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"atl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"atm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"atn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"ato" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/space) +"atq" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/chemical_dispenser/catering/bar_alc, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"atr" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"ats" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"att" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"atu" = ( +/turf/simulated/wall, +/area/tradeport/commons) +"atv" = ( +/obj/structure/table/rack/steel, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd/loaded, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"atw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/power/terminal, +/obj/structure/cable/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"atx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aty" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"atz" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"atA" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"atB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"atC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"atE" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"atF" = ( +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/structure/table/rack/shelf/steel, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"atG" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat/chicken, +/obj/item/reagent_containers/food/snacks/meat/chicken, +/obj/item/reagent_containers/food/snacks/meat/chicken, +/obj/item/reagent_containers/food/snacks/meat/chicken, +/obj/item/reagent_containers/food/snacks/crabmeat, +/obj/item/reagent_containers/food/snacks/crabmeat, +/obj/item/reagent_containers/food/snacks/crabmeat, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"atH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"atI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/debris/cleanable/flour, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"atJ" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/prepainted, +/area/shuttle/adventurer) +"atK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"atL" = ( +/obj/machinery/button/remote/blast_door{ + id = "safari-load"; + pixel_x = -5; + pixel_y = 27 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "safari-load"; + pixel_x = 5; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"atM" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump1a"; + landmark_tag = "nebula_pad_1a"; + name = "Nebula Pad 1a" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"atN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/spine) +"atO" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tradeport/dock) +"atP" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Nebula Gas Station Public Communication Lobby"; + pixel_y = 7 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"atQ" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/cockpit) +"atR" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"atS" = ( +/obj/structure/flora/tree/jungle, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"atT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"atU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"atV" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"atW" = ( +/turf/simulated/wall, +/area/tradeport/cafeteria) +"atY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"atZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/comroom) +"aub" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aud" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "tradeport_udang_docker_pump"; + power_rating = 20000 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/rust, +/obj/effect/shuttle_landmark/triumph/trade/udang, +/obj/overmap/entity/visitable/ship/landable/trade/udang, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aue" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/prepainted, +/area/shuttle/utilitymicro) +"auf" = ( +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aug" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"auh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aui" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"auj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"auk" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/shuttle/adventurer) +"aum" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/wall/prepainted/engineering, +/area/shuttle/udang/cockpit) +"aun" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"auo" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aup" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aur" = ( +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aus" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/monodark, +/area/tradeport/commhall) +"aut" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/comroom) +"auv" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"auw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aux" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"auy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"auz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/sign/warning{ + pixel_x = 31; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"auA" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"auB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"auC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/adventurer) +"auD" = ( +/obj/structure/window/reinforced/tinted/frosted, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"auE" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/obj/structure/panic_button{ + pixel_x = -32 + }, +/obj/machinery/holopad/ship/starts_inactive, +/obj/machinery/light{ + dir = 8; + light_range = 12; + old_wall = 1 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/cockpit) +"auF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes, +/obj/effect/floor_decal/grass_edge{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"auG" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/mineral/floor/vacuum, +/area/space) +"auH" = ( +/obj/machinery/holopad/ship, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom/holo3) +"auI" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"auJ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/item/grenade/chem_grenade/metalfoam, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/debris/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"auK" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 4; + volume = 15000 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"auM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"auN" = ( +/obj/structure/railing, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"auO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/black/left{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"auP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/syndicate, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"auQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"auR" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/gibspawner/human, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"auS" = ( +/obj/structure/closet/crate/secure/engineering{ + req_access = list(160) + }, +/obj/random/tool/power, +/obj/random/tool/power, +/obj/random/tool/power, +/obj/item/cell/device/weapon/recharge/alien, +/obj/random/tool/alien, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"auT" = ( +/obj/structure/catwalk, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"auX" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/comroom/holo3) +"auY" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + light_range = 12 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"auZ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northright{ + name = "rare item display case"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/item/gun/energy/alien, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"ava" = ( +/obj/item/radio/intercom/trader{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/closet/crate/bin{ + anchored = 1; + pixel_x = 8; + pixel_y = 10 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"avb" = ( +/obj/machinery/light, +/obj/structure/closet/wardrobe/pjs, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"avc" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndi) +"avd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/tradeport/commons) +"ave" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump3c"; + name = "Nebula Pump Controller"; + pixel_x = -25 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"avg" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "safari"; + name = "Safari Clerk Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/item/paper{ + info = "Hey Jack, make sure the new guy knows that he's supposed to charge before he lets people go into the back for the 'safari'. General price is 5 thalers. If they want to buy a Grub, make sure to charge them for the crate too."; + name = "Admissions Guidelines" + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"avh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/engineering) +"avi" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"avj" = ( +/obj/machinery/light, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"avk" = ( +/obj/machinery/door/airlock/command{ + name = "Bridge"; + req_access = list(160); + req_one_access = null + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"avl" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 26 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"avm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"avn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"avo" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/debris/cleanable/vomit, +/obj/structure/closet/medical_wall{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"avp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/commons) +"avq" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump2a"; + landmark_tag = "nebula_pad_2a"; + name = "Nebula Pad 2a" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"avr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "storeshutter3" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"avs" = ( +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/airlock_sensor{ + pixel_x = -25; + pixel_y = 25 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "trade_pumps" + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"avt" = ( +/obj/machinery/atmospherics/component/unary/outlet_injector{ + dir = 4; + frequency = 1445; + id = "burn_in"; + volume_rate = 700 + }, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/atmospherics) +"avu" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"avv" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/silencer, +/obj/item/silencer, +/obj/item/silencer, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"avx" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/tradeport/cafeteria) +"avy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Custodial Supplies"; + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/atmospherics) +"avz" = ( +/obj/machinery/vending/cigarette{ + name = "Cigarette machine"; + prices = list(); + products = list(/obj/item/storage/fancy/cigarettes = 10, /obj/item/storage/box/matches = 10, /obj/item/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"avB" = ( +/obj/structure/railing/grey, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/structure/window/reinforced/polarized{ + id = "udang_cargo" + }, +/obj/effect/floor_decal/borderfloorblack, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"avC" = ( +/obj/structure/closet/jcloset, +/obj/random/soap, +/obj/item/storage/bag/trash, +/obj/item/mop, +/obj/item/hardsuit_module/cleaner_launcher, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"avE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/shipsensors, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"avF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "rare item display case"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/item/gun/energy/gun/fluff/dominator, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"avG" = ( +/obj/structure/closet{ + name = "custodial" + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"avH" = ( +/obj/machinery/vending/blood, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"avI" = ( +/obj/random/multiple/corp_crate/no_weapons, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"avJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"avK" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"avL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndishow) +"avM" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"avN" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/adventurer) +"avO" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tradeport/cafeteria) +"avQ" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/hos, +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"avS" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/camera, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"avT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = 27; + id_tag = "tradeport_adventurer_dock" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"avU" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"avV" = ( +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"avW" = ( +/turf/simulated/mineral/floor/vacuum, +/area/space) +"avX" = ( +/obj/structure/lightpost, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"avY" = ( +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/airlock/command{ + name = "Managers Office"; + req_access = list(160); + req_one_access = null + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"avZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/wall/r_wall, +/area/tradeport/commons) +"awa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock/command{ + id_tag = "dormmanager"; + name = "Manager's Dorm"; + req_access = list(160); + req_one_access = null + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"awb" = ( +/obj/item/storage/fancy/cigar/taj/premium, +/obj/item/storage/fancy/cigar/havana, +/obj/item/storage/fancy/cigar/havana, +/obj/structure/closet/crate/secure{ + name = "cigars crate"; + req_access = list(160) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"awc" = ( +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"awe" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom/holo1) +"awf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"awg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"awh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "trade"; + name = "Shop Shutters"; + pixel_x = -4; + pixel_y = -1; + req_access = list(160) + }, +/obj/item/radio/intercom/trader{ + dir = 1; + pixel_y = 25 + }, +/obj/machinery/button/holosign{ + id = "tradersign"; + pixel_x = 6 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"awi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/wall/prepainted, +/area/shuttle/adventurer) +"awj" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"awk" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/reinforced, +/area/sector/nebula_tradeport/dock2) +"awl" = ( +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"awm" = ( +/obj/machinery/door/airlock/glass_external{ + name = "Nebula Gas - External Access" + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "trade_docks_2"; + name = "internal access button"; + pixel_y = -24 + }, +/turf/simulated/floor, +/area/sector/nebula_tradeport/engineering) +"awn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"awo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"awp" = ( +/obj/item/retail_scanner, +/obj/item/retail_scanner, +/obj/item/retail_scanner, +/obj/item/retail_scanner, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/glass/reinforced, +/area/sector/nebula_tradeport/engineering) +"awq" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cyndi"; + name = "C&K Shutters" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndi) +"awr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aws" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/monodark, +/area/tradeport/commhall) +"awt" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"awu" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"awv" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/wood{ + amount = 50 + }, +/obj/item/stack/material/cloth{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"aww" = ( +/obj/structure/marker_beacon/yellow, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"awy" = ( +/obj/effect/shuttle_landmark/triumph/trade/adventurer, +/obj/overmap/entity/visitable/ship/landable/trade/adventurer, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"awA" = ( +/obj/structure/table/alien, +/obj/item/reagent_containers/food/drinks/bottle/gin{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/storage/fancy/cigarettes/menthols{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/flame/lighter/zippo/royal, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"awB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"awC" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump4c"; + landmark_tag = "nebula_pad_4c"; + name = "Nebula Pad 4c" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"awD" = ( +/obj/structure/closet/crate/secure{ + name = "materials crate"; + req_access = list(160) + }, +/obj/item/stack/material/gold, +/obj/item/stack/material/gold, +/obj/item/stack/material/gold, +/obj/item/stack/material/gold, +/obj/item/stack/material/gold, +/obj/item/stack/material/silver, +/obj/item/stack/material/silver, +/obj/item/stack/material/silver, +/obj/item/stack/material/silver, +/obj/item/stack/material/silver, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/uranium, +/obj/item/stack/material/uranium, +/obj/item/stack/material/uranium, +/obj/item/stack/material/uranium, +/obj/item/stack/material/uranium, +/obj/item/stack/material/diamond, +/obj/item/stack/material/diamond, +/obj/item/stack/material/diamond, +/obj/item/stack/material/diamond, +/obj/item/stack/material/diamond, +/obj/item/stack/material/mhydrogen, +/obj/item/stack/material/mhydrogen, +/obj/item/stack/material/mhydrogen, +/obj/item/stack/material/mhydrogen, +/obj/item/stack/material/mhydrogen, +/obj/fiftyspawner/plasteel, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"awE" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradeportshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/shuttle/plating, +/area/shuttle/trade_ship/general) +"awG" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"awH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"awI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/shuttle_control/explore/adventurer, +/obj/item/gps/internal/base{ + name = "Adventurer Beacon"; + gps_tag = "ADVENTURER" + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = 30; + pixel_x = -6; + id_tag = "tradeport_adventurer_docker" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/adventurer) +"awJ" = ( +/obj/machinery/computer/ship/helm, +/obj/structure/table/steel_reinforced, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = 30; + pixel_x = -6; + id_tag = "tradeport_caravan_docker" + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/shuttle/caravan) +"awK" = ( +/obj/machinery/vending/loadout/costume, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"awL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/airlock/silver{ + id_tag = "tradedorm2"; + name = "Dorm 2" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"awM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/prepainted/science, +/area/shuttle/runabout) +"awN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"awO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"awP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"awQ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"awR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"awS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"awT" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/engineering) +"awU" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor, +/area/sector/nebula_tradeport/engineering) +"awV" = ( +/turf/simulated/mineral/vacuum, +/area/tradeport/exterior) +"awX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"awZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"axa" = ( +/obj/structure/transit_tube, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"axb" = ( +/obj/machinery/light, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"axc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/fuel_port{ + dir = 4; + pixel_y = -32 + }, +/obj/machinery/light{ + light_range = 12 + }, +/obj/effect/floor_decal/rust, +/obj/item/tank/phoron, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"axd" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/crate/secure/science{ + name = "NIF crate"; + req_access = list(160) + }, +/obj/item/nif, +/obj/item/nifrepairer, +/obj/item/nifrepairer, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"axe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/airlock/silver{ + id_tag = "tradedorm1"; + name = "Dorm 1" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"axf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/cafeteria) +"axh" = ( +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 29 + }, +/obj/machinery/air_alarm/alarms_hidden/east_mount, +/obj/machinery/computer/shuttle_control/explore/tug{ + dir = 8 + }, +/obj/item/gps/internal/base{ + gps_tag = "TUG"; + name = "Tug Beacon" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"axi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/wall, +/area/shuttle/udang/main) +"axj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"axl" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"axm" = ( +/obj/machinery/door/firedoor{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"axn" = ( +/obj/machinery/computer/ship/engines, +/obj/machinery/computer/ship/sensors{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/utilitymicro) +"axo" = ( +/obj/structure/flora/pumpkin/carved/girly, +/obj/effect/floor_decal/grass_edge, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"axp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"axq" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/extraction_pack, +/obj/item/extraction_pack, +/obj/item/extraction_pack, +/obj/item/extraction_pack, +/obj/item/extraction_pack, +/obj/item/extraction_pack, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"axr" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock/external/glass{ + icon_state = "door_locked"; + id_tag = "expansion_wing2"; + locked = 1; + name = "Wing Expansion - Under Construction" + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"axs" = ( +/obj/machinery/camera{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"axt" = ( +/obj/structure/fence, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/pads) +"axu" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/pipe/tank/air, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tradeport) +"axv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"axx" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"axy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"axA" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/turf/space, +/area/space) +"axB" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + dir = 4; + frequency = 8018; + id = "pumptwo"; + name = "Pump Two"; + target_pressure = 15000 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"axC" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tradeport/facility) +"axE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"axF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"axG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"axH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"axI" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"axJ" = ( +/obj/machinery/light, +/obj/structure/closet/crate, +/obj/item/storage/daki{ + icon_state = "daki_Holo" + }, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"axK" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"axL" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/shuttle/plating, +/area/shuttle/trade_ship/general) +"axM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/wall/prepainted/cargo, +/area/shuttle/udang/main) +"axN" = ( +/obj/machinery/door/airlock/external/glass{ + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button{ + command = "cycle_ext"; + frequency = 1380; + master_tag = "tradeport_hangar_dock"; + pixel_x = 25; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"axQ" = ( +/obj/effect/floor_decal/industrial/halfstair, +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/poster{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"axS" = ( +/obj/structure/barricade, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commhall) +"axW" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"axX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"axY" = ( +/obj/structure/loot_pile/surface/drone, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/exterior) +"aya" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"ayb" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade_ship/general) +"ayc" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"ayd" = ( +/obj/structure/barricade, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aye" = ( +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"ayf" = ( +/obj/item/storage/secure/safe{ + pixel_x = 34; + pixel_y = 3 + }, +/obj/machinery/button/windowtint/multitint{ + id = "traderportdoor"; + pixel_x = -8; + pixel_y = 23 + }, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"ayg" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"ayh" = ( +/obj/machinery/door/window/northright{ + name = "Cargo Hold"; + req_access = list(160) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"ayi" = ( +/obj/machinery/computer/security/telescreen, +/turf/simulated/wall/r_wall, +/area/tradeport/commons) +"ayj" = ( +/obj/structure/catwalk, +/obj/structure/closet/emcloset, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"ayk" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"aym" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/double/barsign, +/turf/simulated/wall/r_wall/prepainted, +/area/sector/nebula_tradeport/motel/arcade) +"ayn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"ayo" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"ayp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"ayq" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/power/smes/buildable{ + charge = 1.5e+007; + cur_coils = 3; + input_attempt = 1 + }, +/turf/simulated/floor/plating, +/area/tradeport/engineering) +"ays" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/wall/prepainted/science, +/area/shuttle/runabout) +"ayu" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"ayv" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"ayw" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"ayx" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/glass/reinforced, +/area/sector/nebula_tradeport/engineering) +"ayz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Nebula Gas Trade Post" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"ayA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"ayC" = ( +/turf/simulated/wall, +/area/tradeport/medical) +"ayD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"ayE" = ( +/obj/structure/closet/crate, +/obj/item/storage/daki{ + icon_state = "daki_Holo" + }, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"ayF" = ( +/obj/machinery/holosign/bar{ + id = "safarisign" + }, +/turf/simulated/wall/r_wall, +/area/tradeport/commons) +"ayH" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/trade_ship/cockpit) +"ayI" = ( +/obj/item/stool/padded, +/obj/item/toy/plushie/squid/blue, +/obj/landmark/spawnpoint/job/trader, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -24 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"ayK" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/computer/security/telescreen{ + pixel_y = 29 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"ayL" = ( +/obj/machinery/light, +/obj/structure/undies_wardrobe, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"ayM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"ayN" = ( +/obj/structure/marker_beacon/red, +/turf/simulated/floor/reinforced, +/area/sector/nebula_tradeport/dock2) +"ayO" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"ayP" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"ayQ" = ( +/obj/machinery/button/remote/blast_door{ + id = "tradestarshutters"; + name = "remote shutter control"; + pixel_x = 30; + req_access = list(160) + }, +/obj/machinery/button/windowtint/multitint{ + id = "traderstardoor"; + pixel_x = -8; + pixel_y = -23 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"ayR" = ( +/obj/structure/railing/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/structure/window/reinforced/polarized{ + id = "udang_cargo" + }, +/obj/effect/floor_decal/borderfloorblack, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"ayS" = ( +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/wood, +/obj/fiftyspawner/wood, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"ayT" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"ayU" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/sector/nebula_tradeport/medical/public) +"ayV" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/space) +"ayW" = ( +/obj/structure/closet/crate/solar, +/obj/item/stack/cable_coil/green, +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"ayX" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/outdoors/beach/sand/desert/indoors, +/area/tradeport/safarizoo) +"ayY" = ( +/obj/structure/metal_edge{ + layer = 2.8 + }, +/obj/structure/closet/crate/corporate/nanotrasen, +/obj/structure/handrail, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"ayZ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aza" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/shuttle/adventurer) +"azb" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cyndi"; + name = "C&K Shutters" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndi) +"azc" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"azd" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/structure/closet/largecardboard, +/obj/item/instrument/guitar, +/obj/item/instrument/piano_synth, +/obj/item/instrument/glockenspiel, +/obj/item/instrument/violin, +/obj/item/instrument/saxophone, +/obj/item/instrument/harmonica, +/obj/item/instrument/eguitar, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aze" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"azf" = ( +/obj/machinery/camera{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndi) +"azg" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"azi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"azj" = ( +/obj/structure/inflatable, +/turf/space/basic, +/area/tradeport/expansion) +"azk" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/loadout/loadout_misc, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"azm" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/flora/pottedplant/unusual{ + pixel_y = 20; + pixel_x = -15 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"azn" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"azp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"azq" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"azr" = ( +/obj/structure/sign/atmos_plasma{ + desc = "WARNING! Plasma flow tube nearby."; + name = "Pump Five" + }, +/turf/simulated/wall/r_wall, +/area/tradeport/pads) +"azs" = ( +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + name = "Nebula Gas - Employees Only" + }, +/obj/machinery/access_button{ + command = "cycle_int"; + frequency = 1380; + pixel_x = -6; + pixel_y = 25; + req_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"azt" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack/shelf/steel, +/obj/item/pizzabox/pineapple, +/obj/item/pizzabox/pineapple, +/obj/item/pizzabox/pineapple, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"azu" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/flora/pottedplant/thinbush{ + pixel_x = 10 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"azv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"azw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"azx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "rare item display case"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/item/chameleon, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"azy" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"azA" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/orange{ + icon_state = "1-4"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"azB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"azD" = ( +/obj/structure/window/reinforced, +/obj/item/nullrod/egyptian{ + desc = "This golden scepter was once the object of many fanciful tales. Old Earth archaeologists long believed it to be a myth. It was discovered by scavenger teams after the Final War, and has changed hands many times since."; + name = "The Staff of Ahten-Ka" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/marble, +/turf/simulated/floor/outdoors/beach/sand/desert, +/area/tradeport/cyndishow) +"azE" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade-ship-secure"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"azF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tradeport/spine) +"azG" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"azH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/table/bench/steel, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"azI" = ( +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"azJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"azK" = ( +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/grass, +/area/tradeport) +"azM" = ( +/obj/machinery/appliance/cooker/oven, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"azN" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tradeport/spine) +"azO" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"azP" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "tradeport_hangar_docker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "tradeport_hangar_docker_pump" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"azQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"azT" = ( +/obj/spawner/window/borosillicate/full/firelocks, +/turf/simulated/floor/reinforced, +/area/shuttle/runabout) +"azU" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + volume = 20000 + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"azV" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/halfstair{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"azW" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"azX" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"azY" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"azZ" = ( +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aAa" = ( +/obj/structure/flora/pumpkin/carved, +/obj/effect/floor_decal/grass_edge, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"aAb" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/obj/machinery/atmospherics/portables_connector, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/tug) +"aAc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aAe" = ( +/obj/machinery/camera{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump4d"; + name = "Nebula Pump Controller"; + pixel_x = 25 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aAf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/wall, +/area/shuttle/udang/main) +"aAg" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/chemical_dispenser/catering/bar_soft, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aAh" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/storage/toolbox/syndicate, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/commons) +"aAi" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/metal_edge, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aAj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"aAk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel/vip) +"aAl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/bed/double/padded, +/obj/item/bedsheet/browndouble, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/caravan) +"aAn" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/spine) +"aAo" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/structure/cable/yellow, +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aAp" = ( +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"aAq" = ( +/obj/machinery/camera{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aAr" = ( +/obj/machinery/power/apc/alarms_hidden/north_mount, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aAs" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/computer/ship/helm{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/obj/structure/panic_button{ + pixel_y = -28 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/monodark, +/area/shuttle/runabout) +"aAu" = ( +/obj/structure/metal_edge{ + layer = 2.8 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/head/helmet/space/void/explorer, +/obj/item/clothing/head/helmet/space/void/explorer, +/obj/item/clothing/suit/space/void/explorer, +/obj/item/clothing/suit/space/void/explorer, +/obj/item/tank/jetpack/oxygen, +/obj/item/tank/jetpack/oxygen, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aAv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aAw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aAx" = ( +/obj/structure/poster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aAy" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "storeshutter2"; + pixel_x = -23; + req_access = list(160) + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aAz" = ( +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"aAA" = ( +/obj/effect/floor_decal/rust, +/obj/structure/bed/chair/bay/chair/padded/red/smallnest, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"aAB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"aAC" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aAD" = ( +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"aAE" = ( +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + frequency = 8018; + id = "emergencycut"; + name = "emergency cut-off pump"; + target_pressure = 15000 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"aAF" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"aAG" = ( +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aAH" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/cafeteria) +"aAI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aAJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/computer/ship/sensors, +/obj/structure/railing/grey, +/obj/machinery/power/apc/alarms_hidden/north_mount, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/monodark, +/area/shuttle/runabout) +"aAK" = ( +/obj/effect/debris/cleanable/blood, +/obj/item/bone/skull, +/turf/simulated/floor/outdoors/ice, +/area/tradeport/cyndishow) +"aAL" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aAM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aAN" = ( +/obj/structure/bed/chair/sofa/brown/left, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aAP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aAQ" = ( +/obj/machinery/optable, +/obj/machinery/oxygen_pump/anesthetic{ + pixel_y = 29 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/tradeport/medical) +"aAR" = ( +/obj/effect/floor_decal/corner/grey/border, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aAS" = ( +/obj/machinery/light, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"aAT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "storeshutter1" + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/facility) +"aAV" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/tradeport/spine) +"aAX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aAY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/monodark, +/area/tradeport/commhall) +"aAZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"aBb" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/tradeport/commhall) +"aBd" = ( +/obj/effect/gibspawner/human, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"aBe" = ( +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/cafeteria) +"aBf" = ( +/obj/effect/floor_decal/grass_edge, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/outdoors/dirtlight, +/area/tradeport/cyndishow) +"aBg" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/space) +"aBh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + name = "Nebula Gas - Engineering"; + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/engineering) +"aBi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/tradeport) +"aBj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aBk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = 27; + id_tag = "tradeport_runabout_dock" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aBl" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/masks, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/reagent_containers/blood/empty, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/structure/closet/medical_wall{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aBm" = ( +/turf/simulated/wall/prepainted, +/area/shuttle/utilitymicro) +"aBn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"aBo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aBp" = ( +/obj/structure/cable/cyan{ + icon_state = "0-4"; + dir = 4 + }, +/obj/machinery/computer/shuttle_control/explore/trade/udang{ + dir = 1 + }, +/obj/machinery/power/apc/alarms_hidden/west_mount, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/udang/cockpit) +"aBq" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aBr" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aBs" = ( +/obj/machinery/vending/loadout/clothing, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aBt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"aBu" = ( +/obj/structure/table/steel_reinforced, +/obj/item/integrated_circuit_printer/upgraded, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aBv" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump4b"; + landmark_tag = "nebula_pad_4b"; + name = "Nebula Pad 4b" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aBw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"aBx" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lightpost, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"aBy" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"aBA" = ( +/obj/structure/table/standard, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/carpet, +/area/shuttle/trade_ship/general) +"aBB" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aBC" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "ck_show"; + name = "Showroom Security"; + pixel_x = -27 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndi) +"aBD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aBE" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/rust, +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aBF" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/comroom/holo2) +"aBG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aBH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aBI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"aBJ" = ( +/obj/structure/sign/atmos_plasma{ + desc = "WARNING! Plasma flow tube nearby."; + name = "Pump One" + }, +/turf/simulated/wall/r_wall, +/area/tradeport/pads) +"aBK" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"aBL" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"aBM" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aBN" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera{ + dir = 8 + }, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"aBO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/wall/wood, +/area/shuttle/caravan) +"aBP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aBQ" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aBR" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/largecrate/animal/cat, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aBS" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/turf/simulated/floor/plating, +/area/tradeport/cafeteria) +"aBT" = ( +/obj/machinery/washing_machine, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aBU" = ( +/obj/structure/curtain/black, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"aBV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aBW" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aBX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/door/airlock{ + name = "Custodial Supplies"; + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/atmospherics) +"aBY" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/marble, +/obj/item/gun/ballistic/shotgun/pump/JSDF{ + desc = "The Iceman cometh."; + name = "mercenary tactical shotgun" + }, +/turf/simulated/floor/snow, +/area/tradeport/cyndishow) +"aBZ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"aCa" = ( +/obj/machinery/vending/loadout/overwear, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aCb" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aCd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aCe" = ( +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 29 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aCg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/material/twohanded/baseballbat/penbat, +/obj/machinery/door/window/eastright{ + name = "rare item display case"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/machinery/camera{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tradeport/cyndishow) +"aCh" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aCi" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "spine_outbound"; + name = "outbound conveyor"; + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aCk" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aCl" = ( +/obj/machinery/vending/loadout/uniform, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aCm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aCn" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"aCo" = ( +/obj/structure/metal_edge, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aCp" = ( +/turf/simulated/mineral/vacuum, +/area/tradeport/pads) +"aCq" = ( +/obj/machinery/button/remote/blast_door{ + pixel_y = 27; + id = "VIP Airlock" + }, +/obj/machinery/door/blast/regular{ + dir = 8; + id = "VIP Airlock" + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aCr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aCs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light{ + light_range = 12 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aCt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aCu" = ( +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + frequency = 1380; + master_tag = "tradeport_udang_docker"; + pixel_y = -22 + }, +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "fire control hatch" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aCv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/engineering) +"aCx" = ( +/obj/structure/sign/atmos_plasma{ + desc = "WARNING! Plasma flow tube nearby."; + name = "Pump Three" + }, +/turf/simulated/wall/r_wall, +/area/tradeport/pads) +"aCy" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/caravan) +"aCz" = ( +/obj/machinery/vending/loadout/overwear, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aCA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"aCB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aCC" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/obj/structure/curtain/open/shower/engineering, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom/holo2) +"aCD" = ( +/obj/structure/inflatable, +/turf/simulated/floor/plating, +/area/tradeport/expansion) +"aCE" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aCF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aCG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "rare item display case"; + req_access = list(160) + }, +/obj/structure/table/marble, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aCH" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"aCI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aCJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aCK" = ( +/obj/machinery/air_alarm/alarms_hidden/north_mount{ + name = "north bump"; + pixel_y = 28; + req_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aCL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aCM" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"aCN" = ( +/obj/machinery/door/blast/shutters{ + id = "Tug2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoorc0"; + id = "tugdoor2"; + name = "Tug hauler shuttle Airlock"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aCP" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aCQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aCS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/sector/nebula_tradeport/dock2) +"aCT" = ( +/obj/structure/table/steel, +/obj/machinery/microwave, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/air_alarm/alarms_hidden/north_mount, +/turf/simulated/floor/tiled/old_tile/white, +/area/shuttle/caravan) +"aCU" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/smartfridge/seeds, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aCV" = ( +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "trade_pumps" + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"aCW" = ( +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"aCX" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/item/flashlight/lamp, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aCY" = ( +/obj/machinery/door/window/southright, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"aCZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aDa" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/cafeteria) +"aDb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aDc" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aDd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport) +"aDe" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/obj/item/soap, +/obj/item/towel{ + color = "#0000FF" + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"aDf" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aDg" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aDh" = ( +/turf/space, +/area/space) +"aDi" = ( +/obj/vehicle_old/train/engine, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aDk" = ( +/obj/spawner/window/low_wall/full/firelocks/nogrille, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom/holo3) +"aDl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aDm" = ( +/obj/machinery/light/small, +/obj/structure/flora/pumpkin, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"aDn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/paper{ + info = "WELCOME TO THE NEBULA MOTEL \ TO BUY A PASS, SEEK M4RIA, AT BEHIND THE COUNTER. \ \ We have 9 rooms. \ Room 1 to 4 have a small kitchen, and washing room. \ Room 1 and 4 have 1 Double bed. \ 2 has 1 single bed \ 3 have 2 single beds. \ Those rooms are 30 Thrallers the 3 to 5 hours. \ \ Room 5 to 8 have no kitchen, and washing room. \ Room 6 and 8 have 1 Double bed. \ 5 has 1 single bed \ 7 have 2 single beds. \ Those rooms are 15 Thrallers the 3 to 5 hours. \ \ Room 9 is our VIP Suite. This suite has 2 bed rooms, 1 office, 1 fully equipped kitchen, 1 washroom, 1 laundry room, And its own shuttle call the Arrowhead, used by ex Tajaran racer Cheuk'Yager. the suite is 80 Thrallers the 3 to 5 hours. \ \ The Sauna is free to use. The public laundry machine and public bathroom are free to use. Guest pass are available if the rooms are shared."; + name = "Nebula Motel" + }, +/obj/machinery/computer/cryopod/gateway{ + pixel_x = -31 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commhall) +"aDo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/spine) +"aDp" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aDr" = ( +/obj/structure/flora/pottedplant/tropical{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aDs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/washing_machine, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aDt" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aDu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/scale, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aDv" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aDw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aDx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"aDy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/spine) +"aDz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"aDA" = ( +/obj/machinery/door/airlock/silver{ + name = "Sleeping" + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"aDB" = ( +/obj/structure/cult/pylon, +/turf/simulated/floor/outdoors/beach/sand/desert, +/area/tradeport/cyndishow) +"aDC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/poster{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aDD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aDE" = ( +/obj/structure/window/reinforced, +/obj/structure/cult/pylon, +/turf/simulated/floor/outdoors/beach/sand/desert, +/area/tradeport/cyndishow) +"aDG" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/hos, +/obj/structure/poster{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"aDH" = ( +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/utilitymicro) +"aDI" = ( +/obj/structure/closet/largecardboard, +/obj/item/trash/chips, +/obj/item/trash/candy, +/obj/item/trash/candy/proteinbar, +/obj/item/trash/liquidfood, +/obj/item/trash/liquidprotein, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aDJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aDL" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/grass, +/area/tradeport) +"aDM" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aDN" = ( +/mob/living/simple_mob/vore/redpanda, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"aDO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/orange{ + icon_state = "1-4"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aDP" = ( +/obj/structure/inflatable, +/turf/space, +/area/tradeport/expansion) +"aDS" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"aDT" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aDU" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"aDV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aDW" = ( +/turf/simulated/floor/plating, +/area/tradeport/commons) +"aDY" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/smes/buildable{ + charge = 1.5e+007; + cur_coils = 3; + input_attempt = 1 + }, +/turf/simulated/floor/plating, +/area/tradeport/engineering) +"aEa" = ( +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aEb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 4; + pixel_x = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aEd" = ( +/turf/simulated/floor/reinforced, +/area/sector/nebula_tradeport/dock2) +"aEe" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade_ship/general) +"aEf" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aEh" = ( +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/exterior) +"aEi" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/airless, +/area/space) +"aEj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aEk" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastright{ + name = "rare item display case"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/item/stack/telecrystal{ + amount = 20 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aEm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aEn" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"aEo" = ( +/obj/machinery/vending/loadout/gadget, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aEp" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_y = 3 + }, +/obj/item/reagent_containers/food/condiment/small/sugar, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"aEq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/glass_external{ + name = "Ship Hatch" + }, +/obj/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aEr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aEs" = ( +/obj/structure/cable/orange{ + icon_state = "5-10" + }, +/obj/structure/cable/orange{ + icon_state = "5-8" + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aEt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/sign/greencross{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aEu" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aEw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aEx" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/halfstair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aEy" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"aEz" = ( +/obj/machinery/door/airlock/glass{ + name = "Crew Cryogenics" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/commons) +"aEA" = ( +/obj/machinery/computer/ship/helm{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/udang/cockpit) +"aEB" = ( +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aEC" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/computer/shuttle_control/explore/caravan, +/obj/item/gps/internal/base{ + name = "Caravan Beacon"; + gps_tag = "CARAVAN" + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/shuttle/caravan) +"aEE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aEF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aEG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aEH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aEI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/kiddieplaque{ + desc = "A plaque commemorating the construction of the cargo ship Beruang."; + name = "Beruang"; + pixel_x = 32 + }, +/obj/machinery/holopad/ship/starts_inactive, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/cockpit) +"aEJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/bed/chair/comfy, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aEK" = ( +/obj/machinery/power/smes/buildable{ + charge = 15000; + cur_coils = 3 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"aEL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/centcom{ + desc = "For the discerning client."; + name = "C&K Showroom"; + req_access = list(160); + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + id = "ck_show"; + name = "Showroom Blast Door" + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndishow) +"aEM" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aEN" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aEO" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aEP" = ( +/obj/machinery/computer/ship/helm{ + dir = 4 + }, +/obj/item/gps/internal/base{ + desc = "A tracking beacon embedded in the shuttle systems, to help customers find where the best deals are."; + gps_tag = "BERU"; + name = "trade transport beacon" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"aEQ" = ( +/obj/structure/table/marble, +/obj/item/storage/box/glasses/meta, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/machinery/light/small, +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"aER" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump5a"; + landmark_tag = "nebula_pad5a"; + name = "Nebula Pad 5a" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aES" = ( +/obj/structure/table/woodentable, +/obj/item/deck/cards, +/turf/simulated/floor/plating, +/area/tradeport/facility) +"aET" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/space) +"aEU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/space) +"aEV" = ( +/obj/machinery/sleeper/survival_pod, +/obj/item/tank/emergency, +/obj/item/tank/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/mask/breath/emergency, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"aEW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aEY" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aEZ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"aFa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/mob/living/bot/cleanbot/edCLN{ + desc = "A large cleaning robot. It's nametag reads 'Jim'."; + move_speed = 6; + name = "Jim" + }, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"aFc" = ( +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + pixel_y = -25 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "trade_solars"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "trade_solars" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/engineering) +"aFd" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/rd, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"aFe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aFf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/closet/crate/corporate/veymed, +/obj/structure/closet/walllocker_double/east, +/obj/machinery/light{ + dir = 4; + old_wall = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"aFg" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access = list(160); + req_one_access = null + }, +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/tradeport/dock) +"aFh" = ( +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/tradeport/expansion) +"aFi" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/shuttle/udang/cockpit) +"aFj" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump3b"; + landmark_tag = "nebula_pad_3b"; + name = "Nebula Pad 3b" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aFk" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 25 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aFl" = ( +/obj/machinery/computer/arcade/battle, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"aFm" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aFn" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"aFo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade_ship/general) +"aFp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aFq" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "spine_outbound" + }, +/turf/simulated/floor/airless, +/area/space) +"aFr" = ( +/obj/structure/table/steel_reinforced, +/obj/item/cell/hyper, +/obj/item/cell/high, +/obj/item/cell/high, +/obj/item/storage/toolbox/syndicate{ + pixel_y = 11 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aFs" = ( +/turf/simulated/wall/sandstonediamond, +/area/tradeport/cyndishow) +"aFt" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aFu" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + dir = 8; + frequency = 8018; + id = "pumpfive"; + name = "Pump Five"; + target_pressure = 15000 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aFv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aFw" = ( +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel) +"aFx" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/map_helper/airlock/door/ext_door, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aFy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aFz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aFA" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump6b"; + name = "Nebula Pump Controller"; + pixel_x = -25 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aFB" = ( +/obj/structure/railing/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/structure/window/reinforced/polarized{ + id = "udang_cargo" + }, +/obj/effect/floor_decal/borderfloorblack, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"aFC" = ( +/obj/structure/table/glass, +/obj/item/radio/intercom/trader{ + dir = 1; + pixel_y = 25 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/toy/plushie/bear_space, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aFD" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/trade_ship/general) +"aFF" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/light, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aFI" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"aFJ" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/techfloor/lythios43c, +/area/tradeport/spine) +"aFK" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aFM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + frequency = 8018; + id_tag = "trade_space_lock_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 8018; + id_tag = "trade_space_lock"; + pixel_x = 25 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aFN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aFO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aFP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aFQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aFR" = ( +/obj/item/clothing/under/syndicate, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/under/syndicate/skirt_pleated, +/obj/item/clothing/under/syndicate/skirt_pleated, +/obj/item/clothing/shoes/boots/combat, +/obj/item/clothing/shoes/boots/combat, +/obj/structure/closet, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aFS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aFU" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"aFV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/commons) +"aFX" = ( +/obj/structure/marker_beacon/yellow, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/udang/main) +"aFY" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aFZ" = ( +/obj/structure/closet/walllocker/emergsuit_wall{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"aGa" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tradeport/safarizoo) +"aGb" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"aGc" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aGd" = ( +/obj/structure/poster{ + pixel_y = -32 + }, +/obj/structure/table/standard, +/obj/item/duct_tape_roll{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/duct_tape_roll{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"aGf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aGg" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"aGh" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/panic_button{ + pixel_y = -28 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"aGi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aGk" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "tradedorm2"; + name = "Dorm 2 Lock"; + pixel_x = -26; + specialfunctions = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aGm" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"aGn" = ( +/obj/structure/catwalk, +/obj/structure/closet/firecloset/full, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aGo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aGr" = ( +/obj/vehicle_old/train/trolley, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aGs" = ( +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aGt" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aGu" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"aGv" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aGw" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aGy" = ( +/obj/machinery/atmospherics/pipe/tank/phoron, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aGA" = ( +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/door/window/westleft{ + req_access = list(160) + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aGB" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0; + req_access = list(160) + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aGC" = ( +/obj/machinery/vending/giftvendor, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aGD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/external/glass{ + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button{ + command = "cycle_int"; + frequency = 1380; + master_tag = "tradeport_hangar_dock"; + pixel_x = -25; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aGE" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aGF" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aGG" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/table/hardwoodtable, +/obj/item/toy/character/alien, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"aGH" = ( +/turf/simulated/floor/glass/reinforced, +/area/sector/nebula_tradeport/engineering) +"aGJ" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/grass, +/area/tradeport) +"aGK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/tradeport/commhall) +"aGM" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"aGN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aGO" = ( +/obj/machinery/computer/security/telescreen, +/turf/simulated/wall, +/area/tradeport/commons) +"aGQ" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"aGR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aGS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor, +/area/tradeport/pads) +"aGT" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"aGU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/button/remote/blast_door{ + id = "Adventurer2"; + name = "Adventurer Front Door"; + pixel_x = -26 + }, +/obj/machinery/door/airlock/hatch{ + name = "Adventurer Airtight Hatch"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoorc0"; + id = "Adventurer2"; + name = "Spacenat Caravan Airlock"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/shuttle/adventurer) +"aGV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aGW" = ( +/obj/machinery/holosign/bar{ + id = "tradersign" + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"aGX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aGY" = ( +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aGZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aHa" = ( +/obj/effect/floor_decal/industrial/halfstair, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aHb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aHd" = ( +/obj/effect/floor_decal/corner_kafel/blue/full, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aHe" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/plaque{ + desc = "This diorama features soil and produce cultivated from the very place of the infamous massacre. The scarecrow came with the purchase for free, and is a guest favorite for photographs."; + name = "Durian V Massacre" + }, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"aHf" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade_ship/general) +"aHg" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"aHh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aHi" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/utilitymicro) +"aHj" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aHk" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/prepainted, +/area/shuttle/tug) +"aHl" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aHm" = ( +/obj/structure/bed/chair/sofa/beige/left, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/udang/main) +"aHn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aHp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/diagonal, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aHq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aHr" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aHs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/arcade/battle, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aHt" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aHu" = ( +/obj/machinery/door/blast/shutters{ + id = "Tug1" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoorc0"; + id = "tugdoor2"; + name = "Tug hauler shuttle Airlock"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aHv" = ( +/obj/structure/metal_edge, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aHw" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aHy" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aHz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aHB" = ( +/obj/structure/closet/crate/trashcart, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"aHC" = ( +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + name = "Nebula Gas - Employees Only" + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"aHD" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/purcarpet, +/area/tradeport/spine) +"aHE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "tradeport_udang_docker_pump"; + power_rating = 20000 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/structure/handrail, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aHF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aHH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/cafeteria) +"aHJ" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"aHK" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/shuttle/trade_ship/general) +"aHL" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aHM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aHN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/snow, +/area/tradeport/cyndishow) +"aHO" = ( +/obj/structure/bed/chair/sofa/beige/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"aHP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aHQ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/backpack/rig{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/storage/backpack/rig{ + pixel_x = -7 + }, +/obj/item/universal_translator/ear/adaptive{ + pixel_x = 11; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aHR" = ( +/obj/structure/railing/grey, +/obj/structure/window/reinforced/polarized{ + id = "udang_cargo" + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"aHS" = ( +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aHT" = ( +/obj/machinery/mech_recharger, +/obj/vehicle/sealed/mecha/working/ripley/mining, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aHU" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aHV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tradeport/commons) +"aHW" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commhall) +"aHX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"aHY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aIa" = ( +/turf/simulated/wall/prepainted/cargo, +/area/shuttle/udang/cockpit) +"aIb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"aId" = ( +/obj/structure/sink/kitchen{ + pixel_y = 17 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"aIe" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Nebula Motel" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"aIf" = ( +/obj/item/clothing/head/bearpelt, +/obj/item/clothing/head/bowler, +/obj/item/clothing/head/caphat/cap, +/obj/item/clothing/head/beaverhat, +/obj/item/clothing/head/beret/centcom, +/obj/item/clothing/head/beret/sec, +/obj/item/clothing/head/collectable/kitty, +/obj/item/clothing/head/collectable/kitty, +/obj/item/clothing/head/collectable/kitty, +/obj/item/clothing/head/collectable/rabbitears, +/obj/item/clothing/head/collectable/rabbitears, +/obj/item/clothing/head/collectable/rabbitears, +/obj/item/clothing/head/collectable/petehat, +/obj/item/clothing/head/collectable/pirate, +/obj/item/clothing/head/collectable/wizard, +/obj/item/clothing/head/collectable/xenom, +/obj/item/clothing/head/cowboy_hat, +/obj/item/clothing/head/pin/flower/violet, +/obj/item/clothing/head/pin/flower/blue, +/obj/item/clothing/head/pin/flower/orange, +/obj/item/clothing/head/pin/flower/pink, +/obj/item/clothing/head/justice, +/obj/item/clothing/head/justice/blue, +/obj/item/clothing/head/justice/green, +/obj/item/clothing/head/justice/pink, +/obj/item/clothing/head/justice/yellow, +/obj/item/clothing/head/philosopher_wig, +/obj/item/clothing/head/plaguedoctorhat, +/obj/item/clothing/head/xenos, +/obj/structure/closet, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aIh" = ( +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/shuttle/caravan) +"aIj" = ( +/obj/structure/lattice, +/turf/simulated/floor/airless, +/area/space) +"aIk" = ( +/obj/machinery/door/window/westleft{ + dir = 2 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "safari"; + name = "Safari Clerk Shutters" + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aIl" = ( +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"aIm" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"aIn" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"aIo" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"aIp" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aIr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aIs" = ( +/turf/simulated/wall/prepainted, +/area/shuttle/adventurer) +"aIt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/atmospherics) +"aIu" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/shuttle/trade_ship/general) +"aIv" = ( +/obj/effect/debris/cleanable/blood/drip, +/turf/simulated/floor/outdoors/ice, +/area/tradeport/cyndishow) +"aIw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aIx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aIy" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aIz" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/trade_ship/general) +"aIA" = ( +/obj/effect/mist, +/turf/simulated/floor/tiled/asteroid_steel, +/area/tradeport/cyndishow) +"aIB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aIC" = ( +/obj/machinery/power/terminal, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aID" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/wall/prepainted/science, +/area/shuttle/runabout) +"aIE" = ( +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "storeshutter3" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aIF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aIG" = ( +/turf/simulated/wall/prepainted/cargo, +/area/shuttle/caravan) +"aIH" = ( +/obj/machinery/camera, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aII" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aIJ" = ( +/obj/structure/closet/crate/secure/weapon{ + req_access = list(160) + }, +/obj/item/gun/energy/civtas, +/obj/item/gun/energy/civtas, +/obj/item/gun/energy/civtas, +/obj/random/energy, +/obj/random/handgun, +/obj/random/weapon/guarenteed, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aIK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aIL" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"aIM" = ( +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"aIN" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/shuttle/trade_ship/general) +"aIO" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/bush, +/turf/simulated/floor/snow, +/area/tradeport/cyndishow) +"aIP" = ( +/obj/machinery/iv_drip, +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aIQ" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/captaindouble, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 25 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"aIR" = ( +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aIS" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/space/basic, +/area/space) +"aIU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"aIV" = ( +/obj/structure/catwalk, +/obj/structure/barricade, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aIW" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/caravan) +"aIX" = ( +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aIY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"aIZ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 4; + pixel_x = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"aJa" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/wall/prepainted/cargo, +/area/shuttle/caravan) +"aJb" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/cyndishow) +"aJd" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + name = "Nebula Gas - Employees Only" + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"aJe" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/snow, +/area/tradeport/cyndishow) +"aJf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/obj/landmark/spawnpoint/job/trader, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aJg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + dir = 4; + frequency = 8018; + id = "pumpsix"; + name = "Pump Six"; + target_pressure = 15000 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aJh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aJi" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cyndi"; + name = "C&K Shutters" + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndi) +"aJj" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aJk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = null; + frequency = 1380; + id_tag = "tradeport_hangar_dock"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aJl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"aJn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aJp" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aJq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/vip) +"aJr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner_kafel/blue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aJs" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"aJt" = ( +/obj/structure/sign/atmos_plasma{ + desc = "WARNING! Plasma flow tube nearby."; + name = "Pump Four" + }, +/turf/simulated/wall/r_wall, +/area/tradeport/pads) +"aJu" = ( +/obj/machinery/power/apc/alarms_hidden/east_mount, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aJv" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aJw" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump6a"; + landmark_tag = "nebula_pad6a"; + name = "Nebula Pad 6a" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aJx" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = 30; + pixel_x = 4; + id_tag = "tradeport_runabout_docker" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/runabout) +"aJz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commhall) +"aJB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aJC" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aJE" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/barricade, +/obj/machinery/door/airlock/silver{ + name = "Cyndi & Kate's Novelty Wares" + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"aJF" = ( +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"aJH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tradeport/spine) +"aJI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/obj/structure/cable/yellow{ + dir = 4; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aJK" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/marker_beacon/yellow, +/turf/simulated/floor/reinforced, +/area/sector/nebula_tradeport/dock2) +"aJL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner_kafel/blue/full{ + dir = 1 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/under/bodysuit/bodysuithazard, +/obj/item/clothing/under/bodysuit/bodysuithazard, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil/gray, +/obj/item/stack/cable_coil/gray, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aJM" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/security) +"aJN" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning, +/obj/item/kit/paint/honker, +/obj/random/paintkit/durand, +/obj/random/paintkit/gygax, +/obj/random/paintkit/gygax, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aJO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aJP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aJQ" = ( +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/item/radio/headset, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aJR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aJS" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/holoplant/shipped{ + anchored = 1; + pixel_y = 12 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/tradeport/spine) +"aJU" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aJV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/camera, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"aJX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"aJY" = ( +/obj/item/modular_computer/console/preset/civilian{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aJZ" = ( +/obj/structure/bed/chair/sofa/beige/right{ + dir = 4 + }, +/obj/structure/window/reinforced/polarized{ + id = "udang_cabin2" + }, +/obj/machinery/button/windowtint{ + pixel_y = -12; + pixel_x = 13; + id = "udang_cabin2" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/udang/main) +"aKa" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/reinforced, +/area/sector/nebula_tradeport/dock2) +"aKb" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/tradeport/pads) +"aKc" = ( +/obj/machinery/smartfridge/chemistry, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aKe" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"aKf" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump6b"; + landmark_tag = "nebula_pad6b"; + name = "Nebula Pad 6b" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aKg" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/wall/prepainted/cargo, +/area/shuttle/caravan) +"aKh" = ( +/obj/structure/flora/pottedplant/tropical{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/camera{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"aKk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plastic, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aKl" = ( +/obj/structure/cable/green, +/obj/structure/table/steel_reinforced, +/obj/machinery/computer/ship/sensors{ + dir = 1 + }, +/obj/machinery/power/apc/alarms_hidden/south_mount, +/turf/simulated/floor/tiled/old_tile/beige, +/area/shuttle/caravan) +"aKm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aKo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aKq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/airless, +/area/space) +"aKr" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"aKs" = ( +/obj/machinery/lathe/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + name = "Unlocked Autolathe" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aKt" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"aKw" = ( +/obj/structure/table/steel_reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aKx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "storeshutter3" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aKz" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aKA" = ( +/obj/structure/closet/crate/solar, +/obj/item/stack/cable_coil/green, +/obj/item/stack/cable_coil/green, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"aKB" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aKC" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aKD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/cafeteria) +"aKE" = ( +/obj/machinery/lathe/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + name = "Unlocked Autolathe" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aKF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aKG" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aKH" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aKJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/cap/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aKK" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Rapid Transit" + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aKL" = ( +/obj/structure/table/bench/wooden, +/obj/structure/flora/pottedplant/shoot{ + pixel_y = 15 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/udang/main) +"aKN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aKO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/shuttle/trade_ship/general) +"aKP" = ( +/turf/simulated/floor/water/indoors, +/area/tradeport/safarizoo) +"aKQ" = ( +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = -24 + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"aKR" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack/shelf/steel, +/obj/item/storage/box/survival_knife, +/obj/item/gun/energy/stripper, +/obj/item/gun/energy/sizegun, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aKS" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/pads) +"aKT" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"aKV" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"aKW" = ( +/obj/machinery/airlock_sensor{ + dir = 8; + frequency = 1380; + id_tag = "tradeport_udang_dock"; + pixel_x = 23 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "tradeport_udang_docker_pump" + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/commons) +"aKX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aKY" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"aKZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aLa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aLb" = ( +/turf/simulated/floor/outdoors/beach/sand/desert/indoors, +/area/tradeport/safarizoo) +"aLc" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -14 + }, +/obj/structure/mirror/long/broke{ + dir = 8; + pixel_x = -29 + }, +/obj/effect/debris/cleanable/blood, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"aLe" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"aLh" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"aLi" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/runabout) +"aLj" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8; + frequency = 8018; + id_tag = "tradeport_hangar_dock" + }, +/obj/machinery/camera{ + dir = 8 + }, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"aLk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow, +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aLl" = ( +/obj/structure/bed/chair/bay/chair/padded/black{ + dir = 8 + }, +/obj/structure/panic_button{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/adventurer) +"aLn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aLo" = ( +/obj/machinery/door/window/southright, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/medical) +"aLp" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled, +/area/sector/nebula_tradeport/comroom) +"aLr" = ( +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"aLt" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 9 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aLu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "1-4"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/halfstair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aLv" = ( +/obj/structure/metal_edge, +/obj/structure/barricade, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aLw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aLx" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 4; + name = "Nebula Commercial District" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"aLy" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/landmark/spawnpoint/job/trader, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aLz" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"aLA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aLD" = ( +/obj/structure/metal_edge{ + layer = 2.8 + }, +/obj/structure/curtain/open/shower/engineering, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aLE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/light/small/flicker{ + dir = 1 + }, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/atmospherics) +"aLF" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aLG" = ( +/obj/machinery/suit_cycler/syndicate{ + req_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aLH" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aLI" = ( +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aLJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aLK" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bookcase, +/obj/item/gun/ballistic/shotgun/pump/combat, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"aLL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/sign/warning{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aLQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aLR" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/cash_register/trader{ + dir = 8; + name = "Emporium Cash Register" + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "safari"; + name = "Safari Clerk Shutters" + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aLS" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/space, +/area/sector/nebula_tradeport/motel/vip) +"aLT" = ( +/obj/structure/metal_edge{ + layer = 2.8 + }, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/handrail, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aLU" = ( +/obj/structure/table/steel, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -33 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"aLW" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/camera, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atm{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commhall) +"aLX" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aLY" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aLZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aMa" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aMb" = ( +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aMc" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/tradeport/pads; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "nebula_pump4d"; + landmark_tag = "nebula_pad_4d"; + name = "Nebula Pad 4d" + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aMd" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/clothing/mask/surgical, +/obj/item/surgical/retractor{ + pixel_y = 6 + }, +/obj/item/surgical/scalpel, +/obj/item/surgical/surgicaldrill, +/obj/item/surgical/circular_saw, +/obj/item/stack/nanopaste, +/obj/item/surgical/hemostat{ + pixel_y = 4 + }, +/obj/item/surgical/cautery{ + pixel_y = 4 + }, +/obj/item/surgical/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/surgical/bonesetter, +/obj/item/surgical/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aMe" = ( +/obj/item/radio/intercom/trader{ + pixel_y = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aMf" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel/vip) +"aMg" = ( +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aMh" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aMi" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/alarms_hidden/east_mount, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aMj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aMl" = ( +/obj/item/radio/intercom/trader{ + dir = 8; + pixel_x = -25 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aMm" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate/secure/weapon{ + req_access = list(160) + }, +/obj/item/gun/energy/phasegun/pistol, +/obj/item/gun/energy/phasegun/pistol, +/obj/random/weapon/guarenteed, +/obj/random/energy, +/obj/random/energy, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aMn" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aMo" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndishow) +"aMp" = ( +/obj/structure/bed/chair/sofa/brown/right, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aMq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/media/jukebox{ + state_base = "darkjuke" + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aMr" = ( +/obj/structure/railing, +/turf/space, +/area/space) +"aMs" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/shield_diffuser, +/obj/item/shield_diffuser, +/obj/item/shield_diffuser, +/obj/machinery/camera{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aMt" = ( +/obj/structure/metal_edge, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aMu" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tradeport/facility) +"aMv" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aMw" = ( +/obj/machinery/computer/ship/engines/adv{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"aMx" = ( +/turf/simulated/floor/plating, +/area/tradeport/facility) +"aMy" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/plating, +/area/tradeport/facility) +"aMz" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"aMA" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/expansion) +"aMC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aMD" = ( +/obj/machinery/cryopod/trade{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"aMH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"aMI" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aMJ" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/light{ + light_range = 12 + }, +/obj/structure/cable/orange{ + icon_state = "5-10" + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aMK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/crate/secure{ + name = "liquors crate"; + req_access = list(160) + }, +/obj/item/reagent_containers/food/drinks/bottle/redeemersbrew, +/obj/item/reagent_containers/food/drinks/bottle/champagne/jericho, +/obj/item/reagent_containers/food/drinks/bottle/pwine, +/obj/item/reagent_containers/food/drinks/bottle/victory_gin, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aML" = ( +/obj/structure/table/alien, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"aMO" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/solar_control/autostart, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aMP" = ( +/obj/machinery/door/airlock/civilian, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"aMQ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/material/knife/ritual{ + desc = "This curved blade, reminiscent of the harvest moon, brings an uncanny chill at the touch. Some wielders have claimed they hear the constant rustling of grain when holding it."; + name = "Harvest Blade" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/table/marble, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"aMR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aMT" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/gift, +/obj/item/gift, +/obj/item/gift, +/obj/item/gift, +/obj/item/gift, +/obj/item/gift, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aMU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/effect/shuttle_landmark/triumph/trade/utilitymicro, +/obj/overmap/entity/visitable/ship/landable/trade/utilitymicro, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/utilitymicro) +"aMX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"aMY" = ( +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/engineering) +"aNa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "storeshutter1" + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/facility) +"aNb" = ( +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "storeshutter2" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aNc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aNd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aNe" = ( +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aNf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"aNg" = ( +/obj/structure/closet/syndicate/personal{ + name = "Cyndi & Kate's Spare Uniforms" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndi) +"aNh" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aNi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -25; + pixel_y = 25 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/tradeport/pads) +"aNj" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/computer/shuttle_control/explore/runabout{ + dir = 1 + }, +/obj/item/gps/internal/base{ + name = "Runabout Beacon"; + gps_tag = "RUNABOUT" + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/monodark, +/area/shuttle/runabout) +"aNk" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"aNl" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aNm" = ( +/obj/machinery/vending/medical{ + req_access = null + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aNo" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Nebula Gas - Rec Area"; + req_access = list(160) + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aNp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndishow) +"aNq" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"aNr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + dir = 6; + id = "dormmanager"; + name = "Door Lock"; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/landmark/spawnpoint/job/trader, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"aNt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aNu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"aNx" = ( +/turf/simulated/wall, +/area/shuttle/udang/main) +"aNy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner_kafel/blue/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aNz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/paperplane, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/monodark, +/area/tradeport/commhall) +"aNA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aNB" = ( +/obj/machinery/telecomms/relay/preset/telecomms, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/caravan) +"aNC" = ( +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aND" = ( +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + frequency = 1380; + master_tag = "tradeport_udang_dock"; + pixel_x = -24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/tradeport/commons) +"aNE" = ( +/obj/machinery/door/airlock/glass_external{ + name = "Nebula Gas - External Access" + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button/airlock_interior{ + frequency = 1380; + master_tag = "trade_docks"; + name = "internal access button"; + pixel_y = -24 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aNF" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/wall/prepainted/medical, +/area/shuttle/adventurer) +"aNG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aNH" = ( +/obj/machinery/door/window/westright{ + dir = 2 + }, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"aNJ" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradeportshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/shuttle/plating, +/area/shuttle/trade_ship/general) +"aNK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aNL" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/debris/cleanable/blood, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"aNM" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aNN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/spine) +"aNO" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aNP" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/shuttle/plating, +/area/shuttle/trade_ship/general) +"aNQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aNR" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/crate/freezer/rations, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/glucose, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/glucose, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/glucose, +/obj/item/reagent_containers/hypospray/autoinjector/biginjector/glucose, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aNT" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/stasis_cage, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aNU" = ( +/obj/machinery/door/airlock/hatch{ + name = "Tug Airtight Hatch"; + req_one_access = list(173) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoorc0"; + id = "tugdoor2"; + name = "Tug hauler shuttle Airlock"; + opacity = 0 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"aNV" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/wall/prepainted/cargo, +/area/shuttle/caravan) +"aNW" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/toolbox/syndicate{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/stack/cable_coil/yellow, +/obj/item/stack/cable_coil/yellow, +/obj/item/clothing/gloves/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aNX" = ( +/obj/machinery/atmospherics/component/binary/pump/on{ + name = "Waste" + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aOa" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/glass/reinforced, +/area/sector/nebula_tradeport/engineering) +"aOb" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/adventurer) +"aOc" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aOd" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/wall, +/area/shuttle/udang/main) +"aOe" = ( +/obj/structure/catwalk, +/turf/simulated/mineral/floor/vacuum, +/area/space) +"aOf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aOg" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/glass/reinforced, +/area/sector/nebula_tradeport/engineering) +"aOh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aOi" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aOj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aOk" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + dir = 4; + old_wall = 1 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aOl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aOm" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/snow, +/area/tradeport/cyndishow) +"aOn" = ( +/obj/structure/curtain/open/shower/engineering, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom/holo3) +"aOo" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aOp" = ( +/obj/effect/debris/cleanable/blood/writing{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"aOq" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aOs" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"aOt" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/utilitymicro) +"aOw" = ( +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aOx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aOy" = ( +/obj/machinery/door/airlock/silver{ + name = "Nebula motel" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"aOA" = ( +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"aOB" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/dock) +"aOC" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/tradeport/engineering) +"aOD" = ( +/obj/structure/catwalk, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aOE" = ( +/obj/machinery/atmospherics/component/unary/heater{ + dir = 1; + icon_state = "heater_1"; + use_power = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aOF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"aOG" = ( +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aOH" = ( +/obj/structure/barricade, +/obj/machinery/light{ + light_range = 12 + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commhall) +"aOI" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aOJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/storage/daki{ + icon_state = "daki_Yaranaika" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aOL" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/wall/r_wall, +/area/tradeport/commhall) +"aOM" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/light/small, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"aON" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + 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/neutral, +/area/tradeport/commons) +"aOP" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/medical) +"aOQ" = ( +/obj/structure/bed/chair/bay/chair/padded/black{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"aOR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aOS" = ( +/obj/item/tank/jetpack/oxygen, +/obj/item/tank/jetpack/oxygen, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aOV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aOX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aOZ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/multiple/corp_crate/no_weapons, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aPa" = ( +/obj/structure/table/glass, +/obj/item/radio/intercom/trader{ + dir = 8; + pixel_x = -25 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aPc" = ( +/obj/structure/table/hardwoodtable, +/obj/item/pen, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aPd" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-4"; + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aPi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aPj" = ( +/obj/machinery/power/smes/buildable{ + charge = 15000; + cur_coils = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/caravan) +"aPk" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aPl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/dispenser, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aPm" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aPn" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aPo" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade_ship/general) +"aPp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/space) +"aPq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aPs" = ( +/obj/landmark/spawnpoint/latejoin/tradeport, +/obj/machinery/computer/cryopod/robot{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"aPt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aPu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/bed/chair/comfy, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aPv" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aPx" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/old_tile/beige, +/area/shuttle/caravan) +"aPy" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aPz" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aPB" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aPD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/largecrate/animal/cow, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aPF" = ( +/obj/structure/table/bench/wooden, +/obj/structure/flora/pottedplant/flower{ + pixel_y = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aPG" = ( +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/spine) +"aPH" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/plating, +/area/tradeport) +"aPI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/tradeport/exterior) +"aPJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoorc0"; + id = "adventurer1"; + name = "Spacenat Caravan Airlock"; + opacity = 0 + }, +/obj/machinery/door/airlock/hatch{ + name = "Adventurer Airtight Hatch"; + req_one_access = null + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"aPK" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/cable/orange{ + icon_state = "5-10" + }, +/obj/structure/cable/orange{ + icon_state = "2-5" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aPL" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aPN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"aPO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aPP" = ( +/turf/simulated/floor/snow, +/area/tradeport/cyndishow) +"aPQ" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/space) +"aPS" = ( +/obj/structure/table/steel_reinforced, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aPT" = ( +/obj/structure/table/woodentable, +/obj/item/clipboard, +/turf/simulated/floor/carpet/bcarpet, +/area/shuttle/trade_ship/general) +"aPU" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aPV" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"aPW" = ( +/obj/machinery/access_button{ + command = "cycle_ext"; + frequency = 8018; + master_tag = "trade_space_lock"; + pixel_x = 25; + pixel_y = 5 + }, +/obj/machinery/door/airlock/glass_external{ + name = "Ship Hatch" + }, +/obj/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aPX" = ( +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aPZ" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump5a"; + name = "Nebula Pump Controller"; + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aQa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"aQb" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/machinery/power/smes/buildable{ + charge = 15000; + cur_coils = 3 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/tug) +"aQd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"aQe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/grass, +/area/tradeport) +"aQf" = ( +/obj/machinery/media/jukebox, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aQg" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aQh" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aQi" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 2 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 2 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aQj" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aQl" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/camera{ + dir = 8 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aQm" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/stolenpackageplus, +/obj/item/stolenpackageplus, +/obj/item/stolenpackageplus, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aQn" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aQo" = ( +/turf/simulated/wall/r_wall/prepainted, +/area/sector/nebula_tradeport/motel/arcade) +"aQp" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/facility) +"aQq" = ( +/obj/structure/table/steel, +/obj/structure/sink/kitchen, +/turf/simulated/floor/tiled/old_tile/white, +/area/shuttle/caravan) +"aQr" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"aQs" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aQt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/lightpost, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"aQu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aQv" = ( +/obj/structure/railing, +/turf/simulated/mineral/floor/vacuum, +/area/space) +"aQw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aQx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aQz" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aQA" = ( +/obj/machinery/vending/cigarette{ + name = "Cigarette machine"; + prices = list(); + products = list(/obj/item/storage/fancy/cigarettes = 10, /obj/item/storage/box/matches = 10, /obj/item/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aQF" = ( +/turf/simulated/floor/outdoors/ice, +/area/tradeport/cyndishow) +"aQG" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/alarms_hidden/east_mount, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"aQH" = ( +/obj/effect/floor_decal/corner_kafel/blue/full{ + dir = 4 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/under/bodysuit/bodysuithazard, +/obj/item/clothing/under/bodysuit/bodysuithazard, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil/gray, +/obj/item/stack/cable_coil/gray, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aQI" = ( +/turf/simulated/floor/plating, +/area/tradeport/dock) +"aQJ" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/purple, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aQK" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/reagent_containers/food/drinks/soymilk, +/obj/item/reagent_containers/food/drinks/soymilk, +/obj/item/reagent_containers/food/drinks/bottle/milk, +/obj/item/reagent_containers/food/drinks/bottle/milk, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/storage/box/glasses/meta, +/turf/simulated/floor/tiled/old_tile/white, +/area/shuttle/caravan) +"aQL" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/orange{ + icon_state = "5-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aQM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/commons) +"aQN" = ( +/obj/machinery/door/window/northleft{ + name = "Cargo Hold"; + req_access = list(160) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aQP" = ( +/obj/machinery/camera, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aQQ" = ( +/obj/structure/window/reinforced, +/obj/structure/sink{ + dir = 8; + pixel_x = -14 + }, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aQR" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"aQS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aQT" = ( +/obj/machinery/vending/loadout/accessory, +/obj/item/modular_computer/telescreen/preset{ + pixel_y = 23; + text = "Text" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aQU" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aQV" = ( +/obj/effect/floor_decal/corner/grey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aQW" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tradeport/facility) +"aQX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"aQY" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aQZ" = ( +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aRa" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/bluespace_radio/commerce, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"aRd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/wall, +/area/shuttle/udang/main) +"aRe" = ( +/obj/structure/closet/walllocker_double/north, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/fuel_port{ + dir = 4; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/runabout) +"aRf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aRg" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aRj" = ( +/obj/structure/table/marble, +/obj/item/material/knife, +/obj/item/material/knife/butch, +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"aRl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = 27; + id_tag = "tradeport_tug_dock" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aRm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aRn" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/bed/chair/sofa/beige/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"aRo" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cyndi"; + name = "C&K Shutters" + }, +/obj/machinery/cash_register/trader{ + dir = 8; + name = "C&K Cash Register" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndi) +"aRp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/tradeport/commons) +"aRq" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aRr" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/camera{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"aRs" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aRt" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "cyndi"; + name = "C&K Shutters"; + pixel_x = -27; + pixel_y = -5 + }, +/obj/machinery/button/holosign{ + id = "cyndisign"; + pixel_x = -26; + pixel_y = 5 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aRu" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light{ + light_range = 12 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aRv" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "tradedorm1"; + name = "Dorm 1 Lock"; + pixel_x = -26; + specialfunctions = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aRw" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"aRy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aRz" = ( +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/facility) +"aRA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lightpost, +/turf/simulated/floor/outdoors/beach/sand/desert/indoors, +/area/tradeport/safarizoo) +"aRB" = ( +/obj/machinery/seed_storage/xenobotany, +/turf/simulated/floor/grass, +/area/tradeport) +"aRD" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aRE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aRF" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/floor_decal/grass_edge, +/turf/simulated/floor/outdoors/dirtlight, +/area/tradeport/cyndishow) +"aRH" = ( +/obj/structure/bed/chair/bay/chair/padded/black{ + dir = 8 + }, +/obj/item/clothing/head/soft/mbill, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"aRI" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = 29; + pixel_x = 5; + id_tag = "tradeport_arrowhead_dock" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aRJ" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/beige/corner{ + dir = 1 + }, +/obj/structure/poster{ + pixel_x = -32 + }, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/udang/main) +"aRK" = ( +/obj/machinery/camera{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump4b"; + name = "Nebula Pump Controller"; + pixel_x = 25 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aRL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"aRM" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/plaque{ + desc = "Although the orbital college where this chain of grisly murders once took place has been long since scuttled and scrapped, the public psyche has not yet forgotten the bloody deeds of the Valentine Killer."; + name = "The Valentine Killer" + }, +/turf/simulated/floor/tiled/hydro, +/area/tradeport/cyndishow) +"aRO" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aRP" = ( +/turf/simulated/wall/r_wall, +/area/tradeport/atmospherics) +"aRQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"aRR" = ( +/obj/effect/floor_decal/corner_kafel/blue/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aRS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aRT" = ( +/obj/structure/lattice, +/turf/space/basic, +/area/space) +"aRU" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/tug) +"aRV" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aRW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/meter, +/obj/effect/debris/cleanable/cobweb2, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport) +"aRX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aRY" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aRZ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access = list(160); + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aSa" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"aSb" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/light/small, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"aSd" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/flame/lighter/zippo/red, +/obj/item/flame/lighter/zippo/red, +/obj/item/flame/lighter/zippo/red, +/obj/item/flame/lighter/zippo/red, +/obj/item/flame/lighter/zippo/red, +/obj/item/flame/lighter/zippo/red, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aSe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aSf" = ( +/obj/structure/stasis_cage, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"aSg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aSh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aSj" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"aSl" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/mineral/vacuum, +/area/tradeport/exterior) +"aSm" = ( +/obj/machinery/door/airlock/voidcraft/survival_pod, +/obj/structure/curtain/open/shower, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/udang/main) +"aSn" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8; + frequency = 8018; + id_tag = "tradeport_hangar_dock" + }, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"aSo" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/simulated/floor/airless, +/area/space) +"aSp" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light, +/obj/random/multiple/corp_crate/no_weapons, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aSq" = ( +/turf/simulated/floor/airless, +/area/space) +"aSr" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aSt" = ( +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"aSu" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 4 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/udang/main) +"aSv" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/halfstair, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aSw" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/plating, +/area/shuttle/caravan) +"aSx" = ( +/obj/effect/floor_decal/corner/grey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aSA" = ( +/obj/effect/floor_decal/corner/grey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aSB" = ( +/obj/effect/debris/cleanable/blood/drip, +/obj/effect/debris/cleanable/blood/drip, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aSC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aSF" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aSI" = ( +/obj/structure/catwalk, +/obj/structure/barricade, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aSJ" = ( +/obj/machinery/door/blast/regular{ + id = "safari-load"; + name = "Safari Loading Doors" + }, +/turf/simulated/floor/wood, +/area/tradeport/safari) +"aSK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aSL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/landmark/spawnpoint/job/trader, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aSM" = ( +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aSO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "tradeport_hangar_dock"; + pixel_x = 25 + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aSQ" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"aSR" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + capacity = 1.5e+007; + charge = 1.5e+007; + cur_coils = 3; + input_attempt = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aST" = ( +/obj/structure/transit_tube, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aSU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aSV" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump3a"; + name = "Nebula Pump Controller"; + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aSW" = ( +/obj/effect/shuttle_landmark/triumph/trade/runabout, +/obj/overmap/entity/visitable/ship/landable/trade/runabout, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/runabout) +"aSX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aSY" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/space, +/area/space) +"aTa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aTc" = ( +/obj/effect/floor_decal/industrial/halfstair, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aTd" = ( +/obj/machinery/door/airlock/glass{ + name = "Storage" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aTe" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"aTg" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/tradeport/pads) +"aTh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aTi" = ( +/obj/item/paper{ + info = "WELCOME TO THE NEBULA MOTEL \ TO BUY A PASS, SEEK M4RIA, AT BEHIND THE COUNTER. \ \ We have 9 rooms. \ Room 1 to 4 have a small kitchen, and washing room. \ Room 1 and 4 have 1 Double bed. \ 2 has 1 single bed \ 3 have 2 single beds. \ Those rooms are 30 Thrallers the 3 to 5 hours. \ \ Room 5 to 8 have no kitchen, and washing room. \ Room 6 and 8 have 1 Double bed. \ 5 has 1 single bed \ 7 have 2 single beds. \ Those rooms are 15 Thrallers the 3 to 5 hours. \ \ Room 9 is our VIP Suite. This suite has 2 bed rooms, 1 office, 1 fully equipped kitchen, 1 washroom, 1 laundry room, And its own shuttle call the Arrowhead, used by ex Tajaran racer Cheuk'Yager. the suite is 80 Thrallers the 3 to 5 hours. \ \ The Sauna is free to use. The public laundry machine and public bathroom are free to use. Guest pass are available if the rooms are shared."; + name = "Nebula Motel" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aTj" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/sign/warning/mail_delivery{ + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aTk" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/l3closet/janitor, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"aTl" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -13 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aTm" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aTn" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/plating, +/area/shuttle/adventurer) +"aTo" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/tradeport/commhall) +"aTp" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"aTq" = ( +/obj/structure/transit_tube, +/turf/space, +/area/tradeport/spine) +"aTr" = ( +/turf/simulated/floor, +/area/tradeport/pads) +"aTt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aTu" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump2a"; + name = "Nebula Pump Controller"; + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aTv" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/engineering) +"aTw" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + dir = 8; + frequency = 8018; + id = "pumpone"; + name = "Pump One"; + target_pressure = 15000 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aTx" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aTy" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"aTz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westright{ + dir = 2; + name = "rare item display case"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/item/gun/energy/gun/fluff/gunsword, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aTA" = ( +/obj/machinery/button/remote/blast_door{ + id = "tugdoor2"; + name = "Tug exit door"; + pixel_y = 26; + pixel_x = -10 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = 30; + pixel_x = 4; + id_tag = "tradeport_tug_docker" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aTC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/landmark/spawnpoint/job/trader, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aTD" = ( +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 29 + }, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"aTE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aTF" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aTG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"aTH" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aTI" = ( +/turf/simulated/wall, +/area/tradeport/engineering) +"aTJ" = ( +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/holster/machete, +/obj/item/clothing/accessory/holster/leg, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aTK" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aTM" = ( +/obj/structure/cable/orange{ + dir = 2 + }, +/obj/machinery/power/terminal, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"aTN" = ( +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom/holo1) +"aTO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/commons) +"aTR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "storeshutter2" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aTS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/orange{ + icon_state = "1-4"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aTT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aTU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/mob/living/bot/cleanbot/roomba/meido{ + desc = "A small, plate-like cleaning robot. She looks quite dignified. This one has a frilly headband attached to the top."; + name = "Madam Dusty"; + on = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aTV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aTW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aTX" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aTY" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/comroom/holo1) +"aTZ" = ( +/obj/machinery/door/airlock/glass/engineering{ + name = "Engineering"; + req_access = list(160); + req_one_access = null + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aUa" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "nebula_pump6a"; + name = "Nebula Pump Controller"; + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aUb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aUc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aUd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aUf" = ( +/obj/machinery/door/airlock/external/glass{ + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aUg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commhall) +"aUh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/closet/walllocker_double/east, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"aUi" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/plaque{ + desc = "This infamous set of antique armor belonged to an Old Earth warrior who died in battle. Although the details behind the Samurai's identity have long since been lost, rumors abound that this suit bears a powerful curse. Perhaps the spirit of that long dead Samurai still guards what is left of its remains."; + name = "Ancient Samurai" + }, +/turf/simulated/floor/snow, +/area/tradeport/cyndishow) +"aUj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aUl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aUn" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/alien, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"aUp" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aUq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/engineering) +"aUt" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/trade_ship/cockpit) +"aUu" = ( +/obj/structure/closet/crate/trashcart{ + desc = "A heavy metal bin full of great deals."; + name = "bargain bin" + }, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/soap, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/nofail, +/obj/random/tech_supply/nofail, +/obj/random/tech_supply/nofail, +/obj/random/tech_supply/nofail, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aUv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aUw" = ( +/obj/machinery/power/smes/buildable{ + charge = 1.5e+007; + cur_coils = 3 + }, +/obj/machinery/light{ + light_range = 12 + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aUx" = ( +/obj/structure/plasticflaps/mining, +/obj/structure/transit_tube, +/turf/simulated/floor/plating, +/area/tradeport/spine) +"aUy" = ( +/obj/machinery/button/remote/blast_door{ + id = "tugdoor3"; + name = "Tug barge door"; + pixel_y = 26; + pixel_x = 7 + }, +/obj/machinery/button/remote/blast_door{ + pixel_y = 26; + id = "Tug1"; + name = "Tug Refueling port"; + pixel_x = -7 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/alarms_hidden/south_mount, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aUz" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"aUA" = ( +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aUB" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aUC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/closet/crate/secure/hydrosec{ + name = "weedkiller crate"; + req_access = list(160) + }, +/obj/item/grenade/chem_grenade/antiweed, +/obj/item/grenade/chem_grenade/antiweed, +/obj/item/grenade/chem_grenade/antiweed, +/obj/item/grenade/chem_grenade/antiweed, +/obj/item/grenade/chem_grenade/antiweed, +/obj/item/grenade/chem_grenade/antiweed, +/obj/item/material/knife/machete/hatchet, +/obj/item/material/knife/machete/hatchet, +/obj/item/material/twohanded/fireaxe/scythe, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aUD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aUE" = ( +/obj/structure/metal_edge, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aUF" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aUG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -13 + }, +/obj/structure/mirror/raider{ + pixel_x = -29 + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aUH" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"aUI" = ( +/obj/structure/bed/chair/bay/chair/padded/teal{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aUJ" = ( +/obj/structure/stasis_cage, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aUK" = ( +/obj/structure/metal_edge{ + layer = 2.8 + }, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/obj/structure/handrail, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aUL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/prepainted/science, +/area/shuttle/runabout) +"aUM" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/wall/prepainted, +/area/shuttle/tug) +"aUN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aUP" = ( +/obj/machinery/door/window/westleft{ + dir = 2 + }, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aUQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade-ship-secure"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aUR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aUT" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/facility) +"aUV" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aUY" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "rare item display case"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/item/pinpointer/nukeop, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aUZ" = ( +/turf/simulated/floor/wood, +/area/shuttle/trade_ship/general) +"aVa" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aVc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aVd" = ( +/obj/machinery/shipsensors, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/trade_ship/general) +"aVe" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"aVf" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aVg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aVh" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/bookbinder, +/obj/structure/sign/warning/mail_delivery{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/comroom) +"aVi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/shipsensors, +/turf/simulated/floor/plating, +/area/shuttle/caravan) +"aVj" = ( +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"aVk" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "storeshutter1"; + pixel_x = 24; + req_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aVm" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aVn" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/wmarble, +/area/sector/nebula_tradeport/motel/vip) +"aVo" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/map_helper/airlock/door/ext_door, +/obj/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + frequency = 1380; + id_tag = "udang_exterior_sensor"; + master_tag = "tradeport_udang_docker"; + pixel_x = 24; + pixel_y = -8 + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aVp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/engineering) +"aVq" = ( +/obj/machinery/computer/ship/sensors{ + dir = 8 + }, +/obj/item/gps/internal/base{ + name = "Udang beacon"; + gps_tag = "UDANG" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/udang/cockpit) +"aVr" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"aVt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aVu" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/sector/nebula_tradeport/dock2) +"aVv" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/adventurer) +"aVw" = ( +/obj/machinery/computer/ship/helm/adv{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"aVz" = ( +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/commons) +"aVA" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "trade_docks" + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "trade_docks"; + pixel_x = -25; + pixel_y = -26 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/tradeport/pads) +"aVB" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "trade_docks" + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor, +/area/tradeport/pads) +"aVC" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock/sandstone{ + frequency = 1382; + id_tag = "safari_access"; + name = "John Safari's Adventure Emporium"; + tag = "safari_door" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/commons) +"aVD" = ( +/obj/structure/lattice, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"aVE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aVF" = ( +/obj/structure/fence{ + pixel_x = 15 + }, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/exterior) +"aVG" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aVH" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "safari"; + name = "Safari Clerk Shutters" + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"aVI" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aVJ" = ( +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"aVK" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/structure/fuel_port{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"aVL" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "cockpit hatch" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/cockpit) +"aVM" = ( +/obj/structure/closet/crate, +/obj/item/gunbox/donksoft, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"aVN" = ( +/obj/structure/window/reinforced, +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aVO" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aVP" = ( +/obj/structure/marker_beacon/yellow, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"aVQ" = ( +/obj/structure/closet/walllocker/autolok_wall{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"aVR" = ( +/obj/structure/closet/crate, +/obj/item/storage/daki{ + icon_state = "daki_Holo" + }, +/obj/item/storage/daki{ + icon_state = "daki_Holo" + }, +/obj/item/storage/daki{ + icon_state = "daki_Holo" + }, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"aVT" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"aVU" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/outdoors/dirtlight, +/area/tradeport/cyndishow) +"aVV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/runabout) +"aVX" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aVY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/tradeport/cyndishow) +"aVZ" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/space) +"aWb" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aWd" = ( +/obj/machinery/vending/loadout/loadout_misc, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aWe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/door/airlock/multi_tile/glass/polarized{ + id_tint = "traderstardoor"; + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/trade_ship/general) +"aWg" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/bed/chair/bay/chair/padded/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/adventurer) +"aWh" = ( +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aWi" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/icecream_cart, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aWk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/tradeport/pads) +"aWl" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aWm" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aWn" = ( +/obj/structure/flora/pumpkin, +/turf/simulated/floor/outdoors/dirt, +/area/tradeport/cyndishow) +"aWo" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/shield_projector, +/obj/item/shield_projector, +/obj/item/shield_projector, +/turf/simulated/floor/wood, +/area/tradeport/cyndi) +"aWq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/adventurer) +"aWr" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/catwalk, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/pads) +"aWs" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/tradeport/commhall) +"aWt" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/space/basic, +/area/sector/nebula_tradeport/motel/vip) +"aWu" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aWv" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/space, +/area/space) +"aWw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aWx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/cafeteria) +"aWy" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/medical) +"aWA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monodark, +/area/sector/nebula_tradeport/comroom) +"aWD" = ( +/obj/structure/closet/walllocker/emergsuit_wall{ + dir = 8; + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"aWE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/curtain/open/shower/engineering, +/obj/machinery/light{ + light_range = 12 + }, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aWF" = ( +/obj/machinery/door/window/southleft{ + name = "Cargo Hold"; + req_access = list(160) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aWG" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/crate, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aWH" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aWI" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"aWK" = ( +/turf/simulated/floor/wood, +/area/tradeport/cyndishow) +"aWN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/landmark/spawnpoint/job/trader, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/carpet/blue, +/area/tradeport/commons) +"aWO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aWP" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aWQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/suit_cycler/syndicate, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"aWR" = ( +/obj/machinery/camera, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cyndishow) +"aWS" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/beige/corner{ + dir = 1 + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "udang_cabin1" + }, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/udang/main) +"aWT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/structure/table/rack/steel, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northright, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aWU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aWV" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "storeshutter3"; + pixel_x = -23; + req_access = list(160) + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aWX" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aWY" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aWZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aXc" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/orange{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/caravan) +"aXd" = ( +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aXf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/commons) +"aXi" = ( +/obj/structure/sign/atmos_plasma{ + desc = "WARNING! Plasma flow tube nearby."; + name = "Pump Two" + }, +/turf/simulated/wall/r_wall, +/area/tradeport/pads) +"aXj" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = 27 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aXk" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/glass/reinforced, +/area/sector/nebula_tradeport/engineering) +"aXl" = ( +/turf/simulated/wall/wood, +/area/shuttle/caravan) +"aXn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aXo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"aXp" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack/shelf, +/obj/item/clothing/suit/space/syndicate/blue, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/lythios43c, +/area/tradeport/spine) +"aXq" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/comroom) +"aXr" = ( +/obj/structure/table/bench/wooden, +/obj/structure/flora/pottedplant/flower{ + pixel_y = 11 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"aXs" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lightpost, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"aXt" = ( +/obj/structure/janitorialcart, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/turf/simulated/floor/tiled/old_cargo/beige, +/area/tradeport/atmospherics) +"aXu" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + pixel_y = 9; + id = "caravan2"; + name = "Caravan Front Door" + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + pixel_y = -8; + id = "caravan1"; + name = "Caravan Back Door" + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/old_tile/beige, +/area/shuttle/caravan) +"aXv" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tradeport/engineering) +"aXw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/cafeteria) +"aXx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aXy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"aXz" = ( +/obj/machinery/light, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/shuttle/trade_ship/general) +"aXA" = ( +/obj/machinery/door/window/westleft{ + req_access = list(160) + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aXB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/prepainted, +/area/shuttle/adventurer) +"aXC" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/shoes/boots/winter/explorer, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/tradeport/spine) +"aXD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/warning{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aXE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aXF" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"aXG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/random/multiple/corp_crate/no_weapons, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"aXH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor, +/area/tradeport/commons) +"aXI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/holopad/ship/starts_inactive, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aXJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"aXK" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"aXL" = ( +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/obj/item/radio/intercom/trader{ + dir = 8; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/cockpit) +"aXM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aXO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/holopad/ship/starts_inactive, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aXQ" = ( +/obj/structure/closet/crate, +/obj/item/gunbox/donksoft/shotgun, +/obj/item/gunbox/donksoft/shotgun, +/obj/item/gunbox/donksoft/shotgun, +/turf/simulated/floor/plating, +/area/shuttle/tug) +"aXS" = ( +/obj/structure/railing/grey, +/obj/effect/floor_decal/industrial/halfstair{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/sector/nebula_tradeport/dock2) +"aXT" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/defib_kit/loaded, +/obj/item/defib_kit/loaded, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tradeport/medical) +"aXV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/radio/intercom/trader{ + dir = 4; + pixel_x = 25 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/shuttle/trade_ship/general) +"aXW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aXX" = ( +/obj/machinery/camera{ + dir = 4 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/cyndishow) +"aXZ" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"aYa" = ( +/obj/structure/railing, +/turf/simulated/floor/outdoors/grass/heavy, +/area/tradeport/spine) +"aYb" = ( +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/cockpit) +"aYc" = ( +/obj/structure/closet/crate/secure{ + name = "slime cores crate"; + req_access = list(160) + }, +/obj/random/slimecore, +/obj/random/slimecore, +/obj/random/slimecore, +/obj/random/slimecore, +/obj/random/slimecore, +/obj/random/slimecore, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aYd" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/door/window/brigdoor/eastright, +/obj/map_helper/access_helper/airlock/station/security/general, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aYe" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "safari"; + name = "Safari Clerk Shutters" + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aYf" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel/sauna) +"aYh" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/shoes/magboots, +/obj/item/tank/oxygen, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/engineering) +"aYi" = ( +/obj/effect/floor_decal/corner/grey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aYj" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + landmark_tag = "nebula_space_SE"; + name = "Near Nebulous Gas (SE)" + }, +/turf/space, +/area/space) +"aYk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/machinery/door/window/southright, +/turf/simulated/floor/tiled/monotile, +/area/tradeport/medical) +"aYl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aYm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"aYn" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/tradeport/pads) +"aYp" = ( +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commhall) +"aYq" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"aYr" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/plating, +/area/tradeport/expansion) +"aYs" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/power/smes/buildable{ + charge = 1.5e+007; + cur_coils = 3; + input_attempt = 1 + }, +/turf/simulated/floor/plating, +/area/tradeport/engineering) +"aYu" = ( +/obj/structure/cable/yellow, +/obj/structure/catwalk, +/obj/machinery/power/apc/alarms_hidden/south_mount{ + cell_type = /obj/item/cell/super; + req_access = list(160) + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aYv" = ( +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aYw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aYx" = ( +/obj/structure/poster{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aYy" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Nebula Gas - Atmospherics"; + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/atmospherics) +"aYz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"aYA" = ( +/obj/structure/closet{ + name = "John Safari Spare Uniforms" + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"aYB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/dock) +"aYC" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/bed/chair/bay/chair/padded/red/smallnest, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/runabout) +"aYD" = ( +/obj/structure/table/standard, +/obj/item/storage/firstaid/surgery, +/obj/item/stack/nanopaste{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/stack/nanopaste{ + pixel_x = 9; + pixel_y = -4 + }, +/obj/item/robotanalyzer{ + pixel_y = -8 + }, +/obj/item/surgical/bioregen, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tradeport/medical) +"aYH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"aYI" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/blast/regular{ + id = "microutility'" + }, +/obj/machinery/button/remote/blast_door{ + id = "microutility'"; + name = "Shuttle Utility Door"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/utilitymicro) +"aYJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"aYK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aYL" = ( +/obj/structure/closet/walllocker_double/south, +/turf/simulated/floor/carpet/patterened/brown, +/area/shuttle/caravan) +"aYM" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/machinery/button/remote/blast_door{ + pixel_x = 23; + pixel_y = 7; + dir = 8; + id = "tugdoor1"; + name = "Tug Barge door" + }, +/obj/machinery/button/remote/blast_door{ + pixel_x = 33; + pixel_y = -2; + dir = 8; + id = "Tug2"; + name = "Tug Air refuel" + }, +/obj/machinery/button/remote/blast_door{ + pixel_x = 23; + pixel_y = -2; + dir = 8; + id = "tugdoor2"; + name = "Tug exit door" + }, +/obj/machinery/button/remote/blast_door{ + pixel_x = 33; + pixel_y = 7; + dir = 8; + id = "Tug1"; + name = "Tug Refueling port" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/shuttle/tug) +"aYN" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/tradeport/commons) +"aYO" = ( +/obj/machinery/door/window/westleft{ + dir = 2 + }, +/obj/machinery/shower{ + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/tradeport/commons) +"aYP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aYQ" = ( +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aYU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/engineering) +"aYV" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aYX" = ( +/obj/structure/inflatable/door, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aYY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/old_tile/beige, +/area/tradeport/safari) +"aYZ" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/security) +"aZa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"aZb" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aZc" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aZd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/door/airlock/glass{ + name = "Showers" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/shuttle/floor/white, +/area/tradeport/commons) +"aZe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"aZf" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/tug) +"aZg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"aZh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"aZi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"aZj" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = 32 + }, +/obj/effect/shuttle_landmark/triumph/trade/caravan, +/obj/overmap/entity/visitable/ship/landable/trade/caravan, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/caravan) +"aZk" = ( +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access = list(160); + req_one_access = null + }, +/turf/simulated/floor/plating, +/area/tradeport/facility) +"aZl" = ( +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/tradeport/pads) +"aZn" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/cafeteria) +"aZo" = ( +/obj/effect/floor_decal/corner_kafel/blue/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/engineering) +"aZp" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/asteroid_steel/airless, +/area/tradeport/pads) +"aZq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button{ + command = "cycle_int"; + frequency = 1380; + pixel_x = -5; + pixel_y = -25; + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock/glass_external{ + name = "Nebula Gas - Employees Only" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"aZr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/prepainted/science, +/area/shuttle/runabout) +"aZw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/dock2) +"aZx" = ( +/obj/landmark/spawnpoint/latejoin/tradeport, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"aZz" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor, +/area/tradeport/pads) +"aZA" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/pads) +"aZB" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/purple, +/area/tradeport/spine) +"aZC" = ( +/obj/structure/sign/vacuum, +/turf/simulated/wall/r_wall, +/area/tradeport/engineering) +"aZD" = ( +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"aZE" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/utilitymicro) +"aZF" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tradeport/dock) +"aZG" = ( +/obj/structure/sign/department/commander{ + name = "MANAGER"; + pixel_x = 32; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aZH" = ( +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/old_tile/red, +/area/sector/nebula_tradeport/security) +"aZI" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/carpet/patterened/red, +/area/sector/nebula_tradeport/motel/vip) +"aZJ" = ( +/obj/structure/railing/grey, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = 32; + pixel_y = -3 + }, +/obj/structure/window/reinforced/polarized{ + id = "udang_cargo" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/shuttle/udang/main) +"aZK" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/item/reagent_containers/food/drinks/bottle/cream, +/obj/item/reagent_containers/food/drinks/bottle/cream, +/obj/item/reagent_containers/food/drinks/bottle/cream, +/obj/item/reagent_containers/food/drinks/bottle/cream, +/obj/item/reagent_containers/food/drinks/bottle/cream, +/obj/item/reagent_containers/food/drinks/bottle/cream, +/obj/item/reagent_containers/food/drinks/bottle/cream, +/obj/item/reagent_containers/food/drinks/bottle/cream, +/turf/simulated/floor/tiled/freezer, +/area/tradeport) +"aZL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/tradeport/cafeteria) +"aZN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/commons) +"aZO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor, +/area/tradeport/pads) +"aZP" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/trade_ship/cockpit) +"aZQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/wall/prepainted, +/area/shuttle/adventurer) +"aZS" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aZT" = ( +/obj/structure/railing, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/exterior) +"aZU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"aZV" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"aZW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/paint/wallgunmetal, +/turf/simulated/wall/rshull, +/area/shuttle/trade_ship/general) +"aZX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"aZY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"bbg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"bch" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/red{ + dir = 4 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"bcm" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/button/holosign{ + id = "tradersign2"; + pixel_x = -20 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "trade2starboard"; + name = "Shop Shutters"; + pixel_x = -29; + pixel_y = 6; + req_access = list(160) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "trade2port"; + name = "Shop Shutters"; + pixel_x = -29; + pixel_y = -4; + req_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"bcr" = ( +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"bcs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"bfo" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/tradeport/cafeteria) +"bfK" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/bed/chair/bay, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"bho" = ( +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/simulated/floor/tiled/techfloor/grid, +/area/space) +"bin" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"biq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"blL" = ( +/turf/simulated/wall/wood, +/area/sector/nebula_tradeport/motel/sauna) +"bmt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"bnC" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"bqy" = ( +/turf/simulated/wall/prepainted/exploration, +/area/shuttle/scoophead/cockpit) +"bqF" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/structure/closet/secure_closet/guncabinet{ + anchored = 1; + req_access = list(160); + req_one_access = null + }, +/obj/item/material/knife/machete/armblade, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"brm" = ( +/obj/structure/table/marble, +/obj/item/reagent_containers/food/snacks/crayonburger_rbw, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"bro" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"brD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/poster{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/cafeteria) +"brN" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/window/reinforced/polarized{ + dir = 2; + id = "scoophead_office" + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/office) +"bsc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"btq" = ( +/obj/machinery/computer/ship/helm{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/cockpit) +"btw" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"bud" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"buw" = ( +/obj/effect/floor_decal/corner/red/border, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"bwj" = ( +/obj/structure/barricade, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"byE" = ( +/obj/structure/sink/kitchen{ + pixel_y = 17 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room2) +"bAj" = ( +/obj/structure/railing/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"bAO" = ( +/obj/machinery/camera{ + dir = 8 + }, +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"bAY" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"bCh" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"bCt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/closet/walllocker/emergsuit_wall{ + dir = 8; + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/button/windowtint{ + pixel_x = -19; + id = "scoophead_office" + }, +/turf/simulated/floor/carpet/patterened/red, +/area/shuttle/scoophead/office) +"bEl" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"bEQ" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/light/spot{ + dir = 4; + nightshift_allowed = 0 + }, +/obj/structure/table/marble, +/obj/item/stack/nanopaste{ + amount = 30 + }, +/obj/item/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 9; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"bEV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/red, +/area/shuttle/scoophead/office) +"bHd" = ( +/obj/structure/aquarium/prefilled, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"bJN" = ( +/obj/machinery/media/jukebox{ + state_base = "darkjuke" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"bNF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"bOU" = ( +/obj/structure/sink/kitchen{ + pixel_y = 17 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room1) +"bSu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"bWe" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/light/fairy{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/red{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"bXs" = ( +/obj/structure/table/hardwoodtable, +/obj/random/alcohol, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room3) +"bXG" = ( +/obj/machinery/light, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"bXL" = ( +/obj/structure/table/hardwoodtable, +/obj/item/material/knife, +/obj/machinery/recharger{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room3) +"bYr" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/machinery/light/spot{ + dir = 8; + nightshift_allowed = 0 + }, +/obj/structure/bed/roller, +/obj/structure/medical_stand/anesthetic, +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"bYS" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/power/apc/alarms_hidden/east_mount, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"caX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"cbA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/debris/cleanable/dirt, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"cer" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/simulated/floor/tiled/techmaint, +/area/sector/nebula_tradeport/motel/room4) +"ceR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/airlock/glass{ + name = "Restrooms" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/cafeteria) +"cfu" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/structure/medical_stand/anesthetic, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"cfJ" = ( +/obj/structure/closet/largecardboard, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel) +"cfW" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/crate/corporate/oculum, +/obj/item/clothing/suit/storage/vest/press, +/obj/item/clothing/suit/storage/vest/press, +/obj/item/clothing/accessory/armor/tag/press, +/obj/item/clothing/accessory/armor/tag/press, +/obj/item/camera, +/obj/item/camera, +/obj/item/tvcamera, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"clf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/curtain/open/black, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"clq" = ( +/obj/machinery/vending/loadout, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"cmo" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room6) +"coN" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"coR" = ( +/obj/machinery/vending/giftvendor, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"coX" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver{ + id_tag = "motel5" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room5) +"crj" = ( +/obj/structure/table/hardwoodtable, +/obj/item/material/knife, +/obj/machinery/recharger{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room1) +"csb" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "scoophead_docker_pump"; + power_rating = 20000 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/shuttle_landmark/triumph/trade/scoophead, +/obj/overmap/entity/visitable/ship/landable/trade/scoophead, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"cst" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/simulated/floor/tiled/techmaint, +/area/sector/nebula_tradeport/motel/room8) +"cuq" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"cyy" = ( +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/obj/machinery/light, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"czm" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"czL" = ( +/obj/structure/bedsheetbin, +/obj/structure/table/hardwoodtable, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"czU" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/engineering) +"cAq" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/engineering) +"cAr" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room2) +"cEz" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"cFM" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/head/helmet/space/syndicate/green, +/obj/structure/table/steel, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/lythios43c, +/area/tradeport/spine) +"cFT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room5) +"cFZ" = ( +/obj/structure/table/bench/wooden, +/obj/effect/mist, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/sauna) +"cHv" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"cJm" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/siphon/on{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airmix, +/area/tradeport/atmospherics) +"cJE" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/simulated/floor/tiled/techmaint, +/area/sector/nebula_tradeport/motel/room2) +"cJV" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"cKu" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"cKH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"cLs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"cMr" = ( +/obj/machinery/cash_register/trader{ + desc = "Swipe your ID card to make purchases electronically. There is a note at the bottom. Press Custom Order. Enter reason and cost. Then have customer swipe their card. "; + dir = 8; + name = "Trader Register" + }, +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"cQi" = ( +/obj/structure/bed/padded, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room2) +"cQQ" = ( +/obj/structure/sign/directions/roomnum{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room3) +"cRa" = ( +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"cRP" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room1) +"cTP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/gear_painter, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"cUz" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/wall/r_wall/prepainted/command, +/area/shuttle/arrowhead) +"cUF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"cWp" = ( +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room7) +"cWD" = ( +/obj/structure/table/hardwoodtable, +/obj/structure/flora/pottedplant/stoutbush{ + pixel_y = 12 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"cWH" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey, +/turf/space/basic, +/area/space) +"cXp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"cXs" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"cXu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"cZd" = ( +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"daD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 4; + pixel_x = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/sauna) +"dgm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"dgI" = ( +/obj/structure/sink/kitchen{ + pixel_y = 17 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room3) +"dhw" = ( +/obj/structure/table/bench/wooden, +/obj/structure/flora/pottedplant/dead{ + pixel_y = 12 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room8) +"dhG" = ( +/obj/structure/cryofeed, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"dhS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"diZ" = ( +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room6) +"djG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"dnD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"dnR" = ( +/obj/structure/bed/chair/sofa/red/right{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room6) +"doo" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"doz" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"dpO" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = list(160); + req_one_access = null + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main2) +"dqN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"drw" = ( +/obj/machinery/chem_master/condimaster, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"dtU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"duf" = ( +/obj/structure/table/hardwoodtable, +/obj/structure/dancepole{ + pixel_x = 17 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel/arcade) +"dvS" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/bmarble, +/area/tradeport/commons) +"dwj" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"dxa" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/bed/chair/comfy/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"dze" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = list(160); + req_one_access = null + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/cockpit) +"dzE" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/debris/cleanable/vomit{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/tradeport/cafeteria) +"dzP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"dAr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"dBY" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "scoophead_room" + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/cockpit) +"dCd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"dDu" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/structure/medical_stand/anesthetic, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"dDD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/apc/alarms_hidden/north_mount, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room7) +"dEe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/foodcart, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"dEf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 4; + pixel_x = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/cafeteria) +"dEz" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"dFp" = ( +/obj/machinery/computer/ship/engines, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/cockpit) +"dGF" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/black, +/turf/simulated/floor/plating, +/area/sector/nebula_tradeport/medical/public) +"dHE" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/bed/chair/comfy/red, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"dIl" = ( +/obj/structure/simple_door/hardwood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room3) +"dIo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/motel) +"dIL" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_y = 27 + }, +/obj/structure/bed/chair/sofa/black/right, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/landmark{ + name = "Trader" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"dLg" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel/arcade) +"dMM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"dMY" = ( +/obj/structure/bed/chair/sofa/red/right{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel/arcade) +"dNR" = ( +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/table/hardwoodtable, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room1) +"dOZ" = ( +/obj/machinery/light/small, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room4) +"dPi" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"dQx" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"dSv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/debris/cleanable/blood/drip, +/turf/simulated/floor/tiled/old_tile/white, +/area/tradeport/cafeteria) +"dTw" = ( +/obj/machinery/sleeper/survival_pod, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"dVq" = ( +/obj/machinery/button/remote/blast_door{ + id = "Arrowhead Airlock"; + pixel_x = 25 + }, +/obj/machinery/door/airlock/hatch{ + name = "Arrowhead Airtight Hatch"; + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + id = "Arrowhead Airlock" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"dXo" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel) +"dXK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"dXU" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "tradeport_scoophead_docker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"dYK" = ( +/obj/structure/transit_tube, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"dZV" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/wall/r_wall/prepainted/command, +/area/shuttle/arrowhead) +"eaJ" = ( +/obj/structure/inflatable, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"eew" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "clerk"; + name = "Clerk Shutters" + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"eeA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"egt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"ehf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"ehl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "motel2"; + name = "Room 1 Lock"; + pixel_y = -23; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room2) +"ehK" = ( +/obj/item/storage/bag/trash, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"eiW" = ( +/obj/structure/railing/grey, +/turf/space/basic, +/area/space) +"ejy" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/closet/crate/secure{ + name = "liquors crate"; + req_access = list(160) + }, +/obj/item/reagent_containers/food/drinks/bottle/moonshine, +/obj/item/reagent_containers/food/drinks/bottle/phobos, +/obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/power/apc/hyper/west_mount, +/obj/structure/cable/pink{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"ekB" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room1) +"enG" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/lattice, +/turf/space/basic, +/area/space) +"eok" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"eoV" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -12 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8; + frequency = 1380; + id_tag = "tradeport_hangar_dock_pump" + }, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel/room8) +"epB" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/rust, +/obj/item/toy/figure/ert, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"etO" = ( +/obj/structure/bed/chair/sofa/red/right{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room5) +"etQ" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"etX" = ( +/obj/machinery/computer/shuttle_control/explore/arrowhead{ + dir = 1 + }, +/obj/item/gps/internal/base{ + name = "Arrowhead beacon"; + gps_tag = "ARROWHEAD" + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"evZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"eym" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"ezf" = ( +/obj/random/multiple/voidsuit/vintage, +/obj/structure/closet, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/item/clothing/suit/space/emergency/russian, +/obj/item/clothing/suit/space/emergency/russian, +/obj/item/clothing/head/helmet/space/emergency/russian, +/obj/item/clothing/head/helmet/space/emergency/russian, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"eBj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "motel3"; + name = "Room 1 Lock"; + pixel_y = -23; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room3) +"eBH" = ( +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room2) +"eCw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/landmark/spawnpoint/latejoin/tradeport, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"eCI" = ( +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room2) +"eDY" = ( +/obj/structure/bed/pod, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/item/bedsheet/cosmos, +/obj/structure/poster{ + pixel_x = -32 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/scoophead/cockpit) +"eEX" = ( +/obj/structure/simple_door/hardwood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room2) +"eFD" = ( +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"eGH" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/oxygen_pump/anesthetic{ + pixel_y = 28 + }, +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"eHq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"eJr" = ( +/obj/structure/bed/chair, +/obj/machinery/newscaster{ + pixel_y = 35 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"eKn" = ( +/obj/machinery/holopad/ship/starts_inactive, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"eKY" = ( +/obj/machinery/computer/arcade/battle, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/carpet/arcadecarpet, +/area/sector/nebula_tradeport/motel/arcade) +"eME" = ( +/obj/structure/curtain/open/bed, +/obj/effect/mist, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/sauna) +"eNq" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/storage/toggle/brown_fancycoat/black, +/obj/item/clothing/suit/storage/toggle/brown_fancycoat, +/obj/item/clothing/suit/storage/tajaran/coat/fancycoat/red, +/obj/item/clothing/suit/storage/tajaran/coat/finecoat, +/obj/item/clothing/suit/storage/tajaran/coat/fancycoat, +/obj/item/clothing/suit/storage/toggle/tesharicoat, +/obj/item/clothing/suit/storage/toggle/tesharicoatwhite, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"eOa" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/rack, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel) +"eOB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"eRa" = ( +/obj/machinery/door/window/westleft{ + name = "Storefront"; + req_access = list(160); + dir = 2 + }, +/obj/machinery/door/window/westleft{ + name = "Storefront"; + req_access = list(160); + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"eSp" = ( +/obj/structure/bed/chair/sofa/brown/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"eXQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Nebula Gas Food Mart" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"fbx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"fci" = ( +/obj/machinery/light/small, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room1) +"fcB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock/silver{ + name = "Women" + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/tradeport/cafeteria) +"fcI" = ( +/obj/structure/sign/directions/roomnum, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room1) +"fdo" = ( +/obj/structure/barricade, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"fgr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Nebula Gas - Dormitories"; + req_access = list(160) + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"fhh" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "scoophead_office" + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/office) +"fir" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"fkY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"fqE" = ( +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"fse" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"fuN" = ( +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/table/hardwoodtable, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room3) +"fuP" = ( +/obj/structure/barricade/cutout/ian, +/obj/structure/barricade/cutout/ian, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"fvH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "motel6"; + name = "Room 1 Lock"; + pixel_y = -23; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room6) +"fxW" = ( +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room3) +"fAe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room3) +"fAl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/wall/r_wall/prepainted, +/area/sector/nebula_tradeport/motel/arcade) +"fCA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"fEe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"fES" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/light, +/obj/structure/cable/pink{ + icon_state = "0-8"; + dir = 1 + }, +/obj/machinery/power/apc/alarms_hidden/south_mount, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/cockpit) +"fFF" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "clerk"; + name = "Clerk Shutters" + }, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"fGg" = ( +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/shower{ + dir = 1 + }, +/turf/simulated/floor/tiled/monowhite, +/area/sector/nebula_tradeport/motel/vip) +"fGL" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/space/basic, +/area/space) +"fIa" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"fJI" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "clerk"; + name = "Clerk Shutters" + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"fMQ" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/arrowhead) +"fOy" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room2) +"fPv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"fQy" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel/room5) +"fSn" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"fSy" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/landmark/spawnpoint/job/trader, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"fUz" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"fUL" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -33 + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"fVZ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"fYq" = ( +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"fZy" = ( +/turf/simulated/wall/r_wall/prepainted/command, +/area/shuttle/arrowhead) +"fZW" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cafeteria) +"gaH" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/wood{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/cloth{ + amount = 50 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"ggg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room4) +"gia" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/sofa/left{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cafeteria) +"gkq" = ( +/obj/machinery/holosign/bar{ + id = "tradersign2" + }, +/turf/simulated/wall/prepainted/exploration, +/area/shuttle/scoophead/main) +"glL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/freezer{ + name = "Nebula Gas - Freezer"; + req_access = list(160) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/freezer, +/area/tradeport/commons) +"gmf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/icecream_cart/loaded, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"gsa" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"gzZ" = ( +/obj/structure/bed/chair/sofa/red{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel/arcade) +"gBQ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"gCP" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/milosoup, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"gCT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/motel) +"gCY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/outdoors/beach/sand/desert/indoors, +/area/tradeport/safarizoo) +"gEl" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel) +"gEX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/cafeteria) +"gFq" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"gGo" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "tradeport_hangar_docker"; + pixel_x = -25 + }, +/obj/overmap/entity/visitable/ship/landable/trade, +/obj/effect/shuttle_landmark/trade/hangar, +/turf/simulated/floor/tiled/dark, +/area/shuttle/trade_ship/general) +"gLI" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/alarms_hidden/north_mount, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room2) +"gMD" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room6) +"gPc" = ( +/obj/structure/table/bench/wooden, +/obj/structure/flora/pottedplant/shoot{ + pixel_y = 9; + pixel_x = -9 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"gPg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"gPi" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"gPE" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room3) +"gQq" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + req_one_access = list(160) + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"gSV" = ( +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"gVm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"gVZ" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver{ + id_tag = "motel8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room8) +"gXc" = ( +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + frequency = 1380; + master_tag = "tradeport_scoophead_docker"; + pixel_y = -22 + }, +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "fire control hatch" + }, +/obj/structure/catwalk, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"gXJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/halfstair{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"gYF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/poster{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"gZx" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/bench/wooden, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"gZF" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room2) +"haI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"haM" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/towel/random, +/obj/item/stack/material/cloth{ + amount = 50 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"het" = ( +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room8) +"hfD" = ( +/obj/structure/cryofeed, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"hgn" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"hgI" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/barricade, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"hhI" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel) +"hhS" = ( +/obj/item/material/ashtray/plastic, +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"hhX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "motel4"; + name = "Room 1 Lock"; + pixel_y = -23; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room4) +"hjC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/sandstone, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel) +"hkP" = ( +/obj/structure/simple_door/hardwood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room1) +"hlr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"hlP" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 9 + }, +/turf/simulated/floor/bmarble, +/area/tradeport/commons) +"hlZ" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver{ + id_tag = "motel4" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room4) +"hoc" = ( +/obj/machinery/door/blast/regular, +/turf/simulated/floor/airless, +/area/tradeport/facility) +"hqf" = ( +/obj/machinery/light/small, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room3) +"hqi" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"hqZ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room1) +"hsH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/motel) +"htg" = ( +/obj/structure/table/hardwoodtable, +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room2) +"huS" = ( +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "scoophead_office" + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "scoophead_office" + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/office) +"hyI" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/chemical_dispenser/catering/bar_coffee{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"hzi" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/motel) +"hzl" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel/room4) +"hBl" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/marble, +/obj/structure/closet/medical_wall{ + name = "defibrillator storage"; + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"hCk" = ( +/obj/structure/bed/chair/sofa/red/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room1) +"hEu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/chair/comfy/red{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/carpet/arcadecarpet, +/area/sector/nebula_tradeport/motel/arcade) +"hFu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"hGc" = ( +/obj/structure/bed/chair/sofa/brown/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"hHX" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "scoophead_docker_pump"; + power_rating = 20000 + }, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"hIR" = ( +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room5) +"hIZ" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = list(160); + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main2) +"hJt" = ( +/obj/effect/debris/cleanable/generic, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"hKI" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/binoculars, +/obj/item/binoculars, +/obj/item/binoculars/spyglass, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"hMU" = ( +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room1) +"hMY" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"hOj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room1) +"hPk" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/machinery/suit_storage_unit/syndicate, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"hQo" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 10 + }, +/turf/simulated/floor/bmarble, +/area/tradeport/commons) +"hQE" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "tradeport_scoophead_dock"; + pixel_x = -26; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"hQL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"hSQ" = ( +/obj/structure/bookcase/legal/corpreg, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"hTV" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"hTW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room2) +"hUx" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/item/deskbell, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"hUy" = ( +/obj/machinery/atmospherics/component/binary/passive_gate/on{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"hVq" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/structure/closet/walllocker/emergsuit_wall{ + dir = 8; + pixel_x = -32 + }, +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"hZT" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/black/corner, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/landmark{ + name = "Trader" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"ian" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/cafeteria) +"iaF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"iba" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"icj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room3) +"icD" = ( +/obj/machinery/power/smes/buildable{ + charge = 1.5e+007; + cur_coils = 3 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "0-8"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"ieG" = ( +/obj/structure/bed/chair/sofa/brown/right{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"ifH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/bmarble, +/area/tradeport/commons) +"igQ" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/tradeport/cafeteria) +"ihy" = ( +/obj/structure/railing/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/halfstair{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"ijf" = ( +/obj/structure/bed/chair/sofa/black/left{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/landmark{ + name = "Trader" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"ikV" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room1) +"ily" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/machinery/vending/sovietsoda, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"ime" = ( +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"ioY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"irm" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 5 + }, +/turf/simulated/floor/bmarble, +/area/tradeport/commons) +"irz" = ( +/obj/machinery/vending/sovietsoda, +/obj/item/modular_computer/telescreen/preset{ + pixel_y = 23; + text = "Text" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"irI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"irN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/gamblingtable, +/obj/item/deck/cards, +/obj/item/deck/tarot, +/obj/item/deck/unus, +/obj/item/deck/cah, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"isg" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"itm" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"itB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Nebula Gas - Employees Only"; + req_access = list(160) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"ius" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/structure/bed/pod, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"iuZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room3) +"iAg" = ( +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"iAn" = ( +/obj/machinery/light, +/obj/machinery/vending/loadout/costume, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"iBb" = ( +/obj/item/storage/toolbox/mechanical, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"iBk" = ( +/obj/machinery/light/fairy{ + dir = 8 + }, +/obj/structure/table/bench/wooden, +/obj/structure/flora/pottedplant/shoot{ + pixel_y = 9; + pixel_x = 2 + }, +/obj/item/instrument/gameboy, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"iCp" = ( +/obj/structure/closet/firecloset/full, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"iFs" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"iIH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"iPk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/holopad/ship/starts_inactive, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/patterened/red, +/area/shuttle/scoophead/office) +"iQo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"iQK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room8) +"iRd" = ( +/obj/structure/table/marble, +/obj/machinery/microwave, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"iRS" = ( +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"iUU" = ( +/obj/structure/bookcase{ + icon_state = "book-4" + }, +/obj/structure/bookcase/legal/sop, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"iVk" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room1) +"iVZ" = ( +/obj/structure/curtain/medical, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"iYy" = ( +/obj/structure/bed/chair/sofa/red/corner{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room6) +"jbA" = ( +/obj/structure/curtain/open/shower, +/obj/structure/simple_door/wood, +/turf/simulated/floor/tiled/neutral, +/area/shuttle/scoophead/cockpit) +"jdu" = ( +/obj/machinery/washing_machine, +/obj/item/storage/laundry_basket{ + pixel_y = 11; + pixel_x = 3 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"jhB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"jjT" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/simulated/floor/tiled/techmaint, +/area/sector/nebula_tradeport/motel/room7) +"jjV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/bed/chair/comfy/red{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"jkH" = ( +/obj/structure/bed/chair/sofa/red/left{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel/arcade) +"jkL" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"jlU" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"jlW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"jnN" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel/room3) +"joa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"job" = ( +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/cable/yellow, +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"joQ" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/poster{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet/patterened/red, +/area/shuttle/scoophead/office) +"jpc" = ( +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "scoophead_room" + }, +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/cockpit) +"juq" = ( +/obj/effect/debris/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"jvl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"jvC" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"jxV" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"jyr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"jzX" = ( +/obj/machinery/light/small, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room4) +"jBe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"jDI" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/box/glasses/meta, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room1) +"jFp" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"jFL" = ( +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room8) +"jFU" = ( +/obj/machinery/light/small, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"jGl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/chair/comfy/red{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/carpet/arcadecarpet, +/area/sector/nebula_tradeport/motel/arcade) +"jHF" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room4) +"jJN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/directions/roomnum{ + dir = 5 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room7) +"jJQ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "motel9"; + name = "Room 1 Lock"; + specialfunctions = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"jLb" = ( +/obj/structure/mob_spawner/pest_nest, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"jLe" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/apc/alarms_hidden/north_mount, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room8) +"jLD" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/light/fairy{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel/arcade) +"jNt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"jOw" = ( +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"jPy" = ( +/obj/structure/panic_button{ + pixel_x = 32 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/cockpit) +"jQe" = ( +/obj/machinery/computer/ship/helm{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/golden_cup{ + pixel_y = 7; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"jQK" = ( +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"jRs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 8; + req_one_access = list(160) + }, +/obj/machinery/door/airlock/maintenance_hatch{ + req_access = list(160); + req_one_access = null + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"jSR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"jUC" = ( +/obj/structure/table/marble, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = 27 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_y = 3 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = -5 + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"jUK" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room4) +"jVe" = ( +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"jVG" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/box/glasses/meta, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room7) +"jVW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"jWg" = ( +/obj/item/stool/padded, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"jXt" = ( +/obj/structure/bed/chair/sofa/red/corner{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room4) +"kaF" = ( +/obj/item/stool/padded, +/obj/item/stool/padded{ + pixel_y = 12 + }, +/obj/item/stool/padded{ + pixel_y = 23 + }, +/obj/item/stool/padded, +/obj/item/stool/padded, +/obj/item/stool/padded, +/obj/item/stool/padded, +/obj/item/stool/padded, +/obj/item/material/twohanded/folded_metal_chair, +/obj/item/material/twohanded/folded_metal_chair, +/obj/item/material/twohanded/folded_metal_chair, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"kbY" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/space_up, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room4) +"keh" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room1) +"keP" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/door/blast/shutters{ + id = "nebulacafe"; + name = "Nebula Cafe Shutters" + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"kfI" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel/room8) +"kge" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room1) +"kgu" = ( +/obj/structure/table/hardwoodtable, +/obj/structure/flora/pottedplant/fern, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room4) +"kgL" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/box/glasses/meta, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room6) +"kji" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/railing, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"kjD" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/item/paper{ + info = "WELCOME TO THE NEBULA MOTEL \ TO BUY A PASS, SEEK M4RIA, AT BEHIND THE COUNTER. \ \ We have 9 rooms. \ Room 1 to 4 have a small kitchen, and washing room. \ Room 1 and 4 have 1 Double bed. \ 2 has 1 single bed \ 3 have 2 single beds. \ Those rooms are 30 Thrallers the 3 to 5 hours. \ \ Room 5 to 8 have no kitchen, and washing room. \ Room 6 and 8 have 1 Double bed. \ 5 has 1 single bed \ 7 have 2 single beds. \ Those rooms are 15 Thrallers the 3 to 5 hours. \ \ Room 9 is our VIP Suite. This suite has 2 bed rooms, 1 office, 1 fully equipped kitchen, 1 washroom, 1 laundry room, And its own shuttle call the Arrowhead, used by ex Tajaran racer Cheuk'Yager. the suite is 80 Thrallers the 3 to 5 hours. \ \ The Sauna is free to use. The public laundry machine and public bathroom are free to use. Guest pass are available if the rooms are shared."; + name = "Nebula Motel" + }, +/obj/item/paper{ + info = "WELCOME TO THE NEBULA MOTEL \ TO BUY A PASS, SEEK M4RIA, AT BEHIND THE COUNTER. \ \ We have 9 rooms. \ Room 1 to 4 have a small kitchen, and washing room. \ Room 1 and 4 have 1 Double bed. \ 2 has 1 single bed \ 3 have 2 single beds. \ Those rooms are 30 Thrallers the 3 to 5 hours. \ \ Room 5 to 8 have no kitchen, and washing room. \ Room 6 and 8 have 1 Double bed. \ 5 has 1 single bed \ 7 have 2 single beds. \ Those rooms are 15 Thrallers the 3 to 5 hours. \ \ Room 9 is our VIP Suite. This suite has 2 bed rooms, 1 office, 1 fully equipped kitchen, 1 washroom, 1 laundry room, And its own shuttle call the Arrowhead, used by ex Tajaran racer Cheuk'Yager. the suite is 80 Thrallers the 3 to 5 hours. \ \ The Sauna is free to use. The public laundry machine and public bathroom are free to use. Guest pass are available if the rooms are shared."; + name = "Nebula Motel" + }, +/obj/item/paper{ + info = "WELCOME TO THE NEBULA MOTEL \ TO BUY A PASS, SEEK M4RIA, AT BEHIND THE COUNTER. \ \ We have 9 rooms. \ Room 1 to 4 have a small kitchen, and washing room. \ Room 1 and 4 have 1 Double bed. \ 2 has 1 single bed \ 3 have 2 single beds. \ Those rooms are 30 Thrallers the 3 to 5 hours. \ \ Room 5 to 8 have no kitchen, and washing room. \ Room 6 and 8 have 1 Double bed. \ 5 has 1 single bed \ 7 have 2 single beds. \ Those rooms are 15 Thrallers the 3 to 5 hours. \ \ Room 9 is our VIP Suite. This suite has 2 bed rooms, 1 office, 1 fully equipped kitchen, 1 washroom, 1 laundry room, And its own shuttle call the Arrowhead, used by ex Tajaran racer Cheuk'Yager. the suite is 80 Thrallers the 3 to 5 hours. \ \ The Sauna is free to use. The public laundry machine and public bathroom are free to use. Guest pass are available if the rooms are shared."; + name = "Nebula Motel" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"koU" = ( +/obj/machinery/camera{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"kqb" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/shuttle/udang/main) +"ksu" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "clerk"; + name = "Clerk Shutters" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/cash_register/trader{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"ksK" = ( +/obj/machinery/vending/loadout/gadget, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"kwi" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"kxF" = ( +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room1) +"kAw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"kAQ" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver{ + id_tag = "motel4" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room3) +"kDN" = ( +/obj/structure/table/bench/wooden, +/obj/item/pizzabox/meat{ + pixel_y = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room6) +"kFh" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/tradeport/cafeteria) +"kFJ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room2) +"kII" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"kJj" = ( +/turf/simulated/wall/prepainted/exploration, +/area/shuttle/scoophead/main) +"kJw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"kJI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/item/tank/phoron, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"kKj" = ( +/obj/structure/table/hardwoodtable, +/obj/item/material/knife, +/obj/machinery/recharger{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room2) +"kKq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"kLg" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"kLs" = ( +/obj/machinery/holopad, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"kMj" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"kPA" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"kVa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"kWI" = ( +/obj/structure/bookcase/legal/sop, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"kXi" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/wood{ + amount = 50 + }, +/obj/item/stack/material/cloth{ + amount = 50 + }, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"kYf" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"kYl" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/alarms_hidden/north_mount, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room4) +"lbo" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"lbr" = ( +/obj/structure/window/reinforced, +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/comroom/holo3) +"lbx" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/tiled/monowhite, +/area/sector/nebula_tradeport/motel/vip) +"lbQ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"lcf" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/mineral/floor/vacuum, +/area/tradeport/pads) +"lfu" = ( +/obj/machinery/chemical_dispenser/catering/bar_soft{ + dir = 4 + }, +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"lfZ" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room4) +"lhm" = ( +/obj/machinery/holopad, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cafeteria) +"ljb" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room3) +"ljc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room8) +"lje" = ( +/obj/machinery/power/apc/alarms_hidden/south_mount{ + req_access = list(160) + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"ljp" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"lkx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"lkX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"llR" = ( +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + frequency = 1380; + master_tag = "tradeport_scoophead_dock"; + pixel_x = -24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"lmT" = ( +/turf/simulated/wall/prepainted/command, +/area/shuttle/scoophead/main2) +"lnx" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"lrC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/directions/roomnum{ + dir = 10 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room6) +"lsj" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"ltU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"luK" = ( +/turf/simulated/floor/wood, +/area/shuttle/scoophead/cockpit) +"luQ" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/simulated/floor/tiled/techmaint, +/area/sector/nebula_tradeport/motel/room6) +"lwk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room1) +"lxm" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room2) +"lxS" = ( +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"lza" = ( +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/table/hardwoodtable, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room2) +"lAe" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver{ + id_tag = "motel1" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room1) +"lAm" = ( +/obj/machinery/sleeper/survival_pod, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"lBP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"lEv" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"lFD" = ( +/obj/structure/table/bench/wooden, +/obj/structure/flora/pottedplant/shoot{ + pixel_y = 9; + pixel_x = 2 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"lGw" = ( +/obj/effect/debris/cleanable/spiderling_remains, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"lIN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"lJQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room1) +"lKd" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"lKf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"lKs" = ( +/obj/structure/simple_door/hardwood, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"lKU" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/rust, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"lLF" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room1) +"lLJ" = ( +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 29 + }, +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"lMf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "nebulacafe"; + pixel_y = 27; + req_access = list(160) + }, +/obj/machinery/door/window/westleft, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"lPS" = ( +/obj/machinery/light/small, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room1) +"lQd" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/alarms_hidden/north_mount, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room1) +"lRy" = ( +/obj/structure/bed/chair/sofa/black, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"lRD" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"lTH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"lWk" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"lXK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"mac" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/rack/shelf/steel, +/obj/random/tool/power, +/obj/random/tool/power, +/obj/random/tool/power, +/obj/item/clothing/suit/storage/vest/tactical, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"maN" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"mcB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/turf/simulated/floor/carpet/patterened/red, +/area/shuttle/scoophead/office) +"mdG" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/captaindouble, +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"mdQ" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"meD" = ( +/obj/machinery/computer/arcade/orion_trail, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/light/fairy{ + dir = 4 + }, +/turf/simulated/floor/carpet/arcadecarpet, +/area/sector/nebula_tradeport/motel/arcade) +"mgo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"mhk" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"mhL" = ( +/obj/structure/sign/directions/roomnum{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room2) +"mkh" = ( +/obj/machinery/light, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"mlq" = ( +/obj/machinery/light/spot{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"mlI" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/r_wall/prepainted/command, +/area/shuttle/arrowhead) +"mmr" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "nebulacafe"; + name = "Nebula Cafe Shutters" + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"mob" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/obj/structure/urinal{ + pixel_y = 31 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/tradeport/cafeteria) +"mpc" = ( +/obj/item/frame/light, +/obj/item/frame/light, +/obj/item/frame/light, +/obj/item/frame/light, +/obj/item/frame/light, +/obj/item/frame/light/small, +/obj/item/frame/light/small, +/obj/item/frame/light/small, +/obj/item/frame/light/small, +/obj/item/frame/light/small, +/obj/item/frame/light/small, +/obj/item/frame/light/small, +/obj/item/storage/box/lights/bulbs_neon, +/obj/item/storage/box/lights/bulbs_colored, +/obj/item/storage/box/lights/bulbs, +/obj/item/storage/box/lights/tubes, +/obj/item/storage/box/lights/tubes_neon, +/obj/structure/closet/largecardboard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/item/stack/tile/carpet/patterned/blue/alt{ + amount = 50 + }, +/obj/item/stack/tile/carpet/blucarpet{ + amount = 50 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"mre" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"mtk" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"mtD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/cafeteria) +"muU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"mwu" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/alarms_hidden/north_mount, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/sauna) +"myP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"mzq" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"mAL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 4; + pixel_x = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"mBg" = ( +/obj/machinery/light/spot{ + dir = 8; + nightshift_allowed = 0 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"mBj" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"mCV" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/cheesyfries, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"mFe" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room1) +"mFk" = ( +/obj/machinery/light/fairy{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"mGF" = ( +/obj/structure/table/hardwoodtable, +/obj/random/alcohol, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room1) +"mHd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/motel) +"mHz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"mHG" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"mIR" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/box/glasses/meta, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room3) +"mJE" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/alarms_hidden/east_mount, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/bed/chair/comfy/red{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"mKA" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/wall/r_wall/prepainted/command, +/area/shuttle/arrowhead) +"mLx" = ( +/turf/simulated/wall/prepainted/command, +/area/shuttle/scoophead/cockpit) +"mMt" = ( +/obj/effect/shuttle_landmark/triumph/trade/arrowhead, +/obj/overmap/entity/visitable/ship/landable/trade/arrowhead, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = 25; + id_tag = "tradeport_arrowhead_docker" + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"mMx" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"mMZ" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "spine_inbound"; + name = "inbound conveyor"; + pixel_y = 8 + }, +/obj/machinery/light, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"mNP" = ( +/turf/simulated/wall/prepainted/command, +/area/shuttle/scoophead/engineering) +"mOb" = ( +/obj/structure/table/hardwoodtable, +/obj/random/alcohol, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room2) +"mOl" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/door/blast/shutters{ + id = "nebulacafe"; + name = "Nebula Cafe Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"mUJ" = ( +/obj/structure/sink{ + pixel_y = 19 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/tiled/monowhite, +/area/sector/nebula_tradeport/motel/vip) +"mVm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"mXe" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/alarms_hidden/east_mount, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"mXW" = ( +/obj/structure/sign/graffiti/pisoff, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"mYX" = ( +/obj/structure/table/wooden_reinforced, +/obj/structure/flora/pottedplant/shoot{ + pixel_y = 9; + pixel_x = 2 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"naT" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"ncQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"ndY" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"nfH" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/space_up, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room1) +"ngf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/monowhite, +/area/sector/nebula_tradeport/motel/vip) +"ngg" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/bookcase/legal/sop, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"ngy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/wall/prepainted/command, +/area/shuttle/scoophead/engineering) +"nhC" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/cockpit) +"nkf" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8 + }, +/obj/machinery/air_alarm/alarms_hidden/north_mount, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"nlw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "motel5"; + name = "Room 1 Lock"; + pixel_y = -23; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room5) +"nlS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"nrK" = ( +/obj/structure/closet/largecardboard, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"nsW" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "clerk"; + name = "Clerk Shutters" + }, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"nui" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/cryopod/robot/trade, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"nvl" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/arrowhead) +"nwb" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/cafeteria) +"nAQ" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"nBl" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"nFe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"nHu" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "clerk"; + name = "Clerk Shutters" + }, +/obj/machinery/button/remote/blast_door{ + id = "clerk"; + pixel_x = -24; + req_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"nIB" = ( +/obj/structure/curtain/open/bed, +/obj/structure/bed/double/padded, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room4) +"nIU" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/flora/pottedplant/dead{ + pixel_y = 12 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"nLg" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"nLQ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"nMv" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"nNt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room2) +"nOQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"nPm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"nQY" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = list(160); + req_one_access = null + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/engineering) +"nUT" = ( +/obj/structure/bed/chair/sofa/red/corner{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room2) +"nXQ" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + volume = 20000; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"nYk" = ( +/obj/machinery/airlock_sensor{ + dir = 8; + frequency = 1380; + id_tag = "tradeport_scoophead_dock"; + pixel_x = 23 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "tradeport_scoophead_docker_pump" + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/map_helper/airlock/atmos/chamber_pump, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"nZt" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/item/hand_labeler, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"nZW" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room7) +"oad" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/hydroponics{ + color = "#754116" + }, +/obj/structure/flora/ausbushes, +/obj/structure/flora/pottedplant/smalltree, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"ojq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"ojz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room8) +"ojC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/r_wall/prepainted/command, +/area/shuttle/arrowhead) +"ojJ" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"olr" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"omb" = ( +/obj/machinery/door/firedoor/glass{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"omp" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/apc/alarms_hidden/north_mount, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room6) +"omw" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room4) +"ooi" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/carpet/patterened, +/area/sector/nebula_tradeport/motel) +"opb" = ( +/obj/item/clothing/gloves/yellow, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/gloves/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"opf" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"opQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room6) +"oqm" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"orT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"osz" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/cloth{ + amount = 50 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"osL" = ( +/obj/structure/closet/largecardboard, +/obj/item/storage/toolbox/syndicate/powertools, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"osM" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/closet/crate/secure{ + name = "cigars crate"; + req_access = list(160) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"oAr" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/item/flashlight/lamp, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"oAt" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/wall/rshull, +/area/shuttle/scoophead/engineering) +"oBg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"oBo" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light/small, +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"oBC" = ( +/obj/item/stool/padded, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room4) +"oBN" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room3) +"oBT" = ( +/obj/structure/table/woodentable, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/item/pen, +/turf/simulated/floor/carpet/patterened/red, +/area/shuttle/scoophead/office) +"oFP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "motel1"; + name = "Room 1 Lock"; + pixel_y = -23; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room1) +"oGt" = ( +/obj/structure/bed/chair/sofa/red/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel/arcade) +"oJX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"oMm" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 8 + }, +/turf/simulated/floor/bmarble, +/area/tradeport/commons) +"oOF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"oUA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"oWk" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/cap/visible/scrubbers, +/obj/machinery/atmospherics/pipe/cap/visible/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/motel) +"oYn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"oYQ" = ( +/obj/machinery/door/window/westleft{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"pbm" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/mist, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/sauna) +"pcx" = ( +/obj/structure/bed/chair/sofa{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cafeteria) +"pcN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"pfn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/machinery/button/windowtint{ + pixel_x = 22; + id = "scoophead_room" + }, +/turf/simulated/floor/wood, +/area/shuttle/scoophead/cockpit) +"pfv" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/computer/arcade/clawmachine, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/carpet/arcadecarpet, +/area/sector/nebula_tradeport/motel/arcade) +"pfJ" = ( +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"pgl" = ( +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 1; + frequency = 1380; + master_tag = "tradeport_scoophead_dock"; + pixel_x = 24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"pgp" = ( +/obj/effect/floor_decal/spline/fancy, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/bmarble, +/area/tradeport/commons) +"phr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 1; + pixel_y = -22; + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"phM" = ( +/obj/structure/bed/padded, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room3) +"piK" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/simulated/floor/tiled/techmaint, +/area/sector/nebula_tradeport/motel/room3) +"plo" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"plJ" = ( +/obj/structure/table/marble, +/obj/item/defib_kit/loaded, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"pnm" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel/room8) +"pnx" = ( +/obj/structure/sign/directions/roomnum{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room8) +"psr" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/light/fairy{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"psX" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"puI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"puK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"pvG" = ( +/obj/structure/table/hardwoodtable, +/obj/structure/flora/pottedplant/thinbush, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room1) +"pyE" = ( +/obj/structure/cable/yellow, +/obj/machinery/vending/nifsoft_shop{ + dir = 8 + }, +/obj/machinery/power/apc/alarms_hidden/south_mount{ + cell_type = /obj/item/cell/super; + req_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"pAI" = ( +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"pCo" = ( +/obj/effect/debris/cleanable/spiderling_remains, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"pFo" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room2) +"pHc" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"pHF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"pIG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"pJb" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"pLj" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/simulated/floor/carpet/patterened/blue/alt, +/area/sector/nebula_tradeport/motel/vip) +"pPt" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main2) +"pRx" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/space_up, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room2) +"pSM" = ( +/obj/structure/bed/chair/sofa/red/right{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room8) +"pWh" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"pYe" = ( +/obj/structure/barricade, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"qcu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/closet/crate/mimic/safe, +/obj/item/clothing/under/tajaran/pra_uniform, +/obj/item/clothing/under/tajaran/nka_uniform/sailor, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"qdi" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"qey" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/wall/r_wall/prepainted/command, +/area/shuttle/arrowhead) +"qfv" = ( +/obj/structure/bed/chair/sofa/red/corner{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room1) +"qfx" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel) +"qgF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"qhK" = ( +/obj/machinery/cryopod/trade, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tradeport/commons) +"qhX" = ( +/turf/simulated/wall/prepainted/exploration, +/area/shuttle/scoophead/engineering) +"qiw" = ( +/obj/structure/railing/grey, +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/structure/panic_button{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"qjE" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/catering/bar_alc{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"qkD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room7) +"qlY" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"qmI" = ( +/obj/structure/simple_door/hardwood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room4) +"qnM" = ( +/obj/structure/bed/double/padded, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room6) +"qnU" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room3) +"qoI" = ( +/obj/machinery/camera{ + dir = 8 + }, +/obj/structure/barricade, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/safari) +"qoJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"qqN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"qrf" = ( +/obj/structure/table/hardwoodtable, +/obj/random/alcohol, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room4) +"qtX" = ( +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"qvo" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/flamp, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"qxV" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lightpost, +/turf/simulated/floor/outdoors/beach/sand/desert/indoors, +/area/tradeport/safarizoo) +"qAM" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"qAU" = ( +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"qCI" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"qGd" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"qIM" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/item/storage/bag/trash, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"qIT" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel/room2) +"qKZ" = ( +/obj/machinery/door/blast/regular{ + id = "trade2starboard" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospheric_field_generator/perma, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"qLg" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"qLC" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"qMT" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/rag, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"qNm" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/snacks/bagged/chips, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"qNM" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver{ + id_tag = "motel2" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room2) +"qOg" = ( +/obj/structure/curtain/open/bed, +/obj/structure/bed/double/padded, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room1) +"qOs" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/box/glasses/meta, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/motel/room8) +"qOL" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/storage/firstaid/adv{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/camera{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"qPf" = ( +/obj/effect/debris/cleanable/molten_item, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"qPq" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"qPr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room7) +"qRm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"qRE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/wall/prepainted/command, +/area/shuttle/scoophead/engineering) +"qSh" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"qSt" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"qUG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/graffiti, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"qWC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "motel8"; + name = "Room 1 Lock"; + pixel_y = -23; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room8) +"qWE" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel/room1) +"qXs" = ( +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"qXy" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/structure/cable/pink{ + icon_state = "2-4"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"qYk" = ( +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"qYN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/firedoor{ + dir = 8 + }, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"rai" = ( +/obj/structure/bed/pod, +/obj/item/bedsheet/brown, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/scoophead/cockpit) +"rch" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/poster{ + pixel_x = 32 + }, +/obj/item/reagent_containers/food/snacks/candy_corn, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"rfq" = ( +/obj/machinery/newscaster{ + pixel_y = 35 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"rfH" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"rit" = ( +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"rmx" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"rnU" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/machinery/power/apc/hyper/west_mount, +/obj/structure/cable/pink, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"rpe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room2) +"rqL" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"rrC" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/unusual{ + pixel_y = 9; + pixel_x = -7 + }, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"rtl" = ( +/obj/structure/sign/directions/roomnum{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room4) +"ruM" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room4) +"rvi" = ( +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"ryw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/table/steel, +/obj/item/hand_labeler, +/turf/simulated/floor/tiled/red, +/area/shuttle/trade_ship/general) +"rzb" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"rDb" = ( +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"rDE" = ( +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel/arcade) +"rEe" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"rJb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"rKU" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room4) +"rLb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room5) +"rLO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/debris/cleanable/dirt, +/obj/random/cutout, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"rLW" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + locked = 0 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 4; + pixel_x = -22; + req_one_access = list(160) + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"rMg" = ( +/obj/effect/mist, +/obj/effect/mist, +/turf/simulated/floor/water/indoors, +/area/sector/nebula_tradeport/motel/sauna) +"rMl" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/snacks/meat, +/obj/item/reagent_containers/food/drinks/bottle/cola, +/obj/item/reagent_containers/food/drinks/bottle/space_up, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room3) +"rMJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/closet/walllocker_double/east, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/shuttle/arrowhead) +"rMO" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"rNm" = ( +/obj/structure/curtain/open/black, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/arcade) +"rOI" = ( +/obj/structure/table/bench/wooden, +/obj/structure/flora/pottedplant/tropical{ + pixel_y = 12 + }, +/obj/machinery/air_alarm/alarms_hidden{ + dir = 8; + pixel_x = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room5) +"rQl" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + name = "fire control hatch" + }, +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + frequency = 1380; + master_tag = "courser_docker"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"rRx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"rRE" = ( +/obj/machinery/chemical_dispenser/catering/bar_alc{ + dir = 4 + }, +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"rSt" = ( +/obj/structure/bed/chair/comfy/red, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"rVS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/prepainted/command, +/area/shuttle/scoophead/engineering) +"rWc" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/simulated/floor/tiled/techmaint, +/area/sector/nebula_tradeport/motel/room5) +"rWr" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room2) +"rXJ" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room7) +"rYx" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = list(160); + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/cockpit) +"rYV" = ( +/obj/machinery/light, +/obj/structure/flora/pottedplant/drooping, +/obj/machinery/fire_alarm/west_mount{ + pixel_x = -26 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"scx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/apc/alarms_hidden/north_mount, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room5) +"sdD" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"ser" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"seR" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"sfh" = ( +/obj/item/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"sjP" = ( +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"ski" = ( +/obj/machinery/door/blast/regular{ + id = "trade2port" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospheric_field_generator/perma, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"snj" = ( +/obj/structure/bed/chair/sofa/red/corner{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room8) +"snu" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"sqp" = ( +/obj/structure/barricade, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"sqy" = ( +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room1) +"sqE" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"sqY" = ( +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room5) +"suE" = ( +/obj/structure/table/hardwoodtable, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room3) +"svz" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/shuttle/scoophead/main) +"swc" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "clerk"; + name = "Clerk Shutters" + }, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"sws" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room4) +"sxW" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/tradeport/cafeteria) +"syk" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"sCj" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"sDd" = ( +/obj/structure/inflatable, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"sFL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"sFQ" = ( +/obj/structure/flora/tree/jungle_small, +/obj/machinery/portable_atmospherics/hydroponics{ + color = "#754116" + }, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/spine) +"sHj" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack/shelf, +/obj/item/clothing/suit/space/syndicate, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/lythios43c, +/area/tradeport/spine) +"sID" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/flora/ausbushes/stalkybush, +/obj/machinery/portable_atmospherics/hydroponics{ + color = "#754116" + }, +/obj/structure/flora/pottedplant/orientaltree, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"sJD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"sJV" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/towel/random, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/sauna) +"sKi" = ( +/obj/structure/bed/double/padded, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room8) +"sLr" = ( +/obj/structure/bed/chair/sofa/brown/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"sMT" = ( +/obj/machinery/power/apc/alarms_hidden/north_mount, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room3) +"sOj" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"sQf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/directions/roomnum{ + dir = 6 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room5) +"sSO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"sSX" = ( +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/vip) +"sTE" = ( +/obj/machinery/light{ + dir = 4; + old_wall = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"sYJ" = ( +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"sYN" = ( +/obj/structure/table/marble, +/obj/item/pizzabox/meat, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"taf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"tbk" = ( +/obj/machinery/holopad/ship/starts_inactive, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"tcJ" = ( +/obj/structure/flora/pottedplant/smelly, +/obj/machinery/portable_atmospherics/hydroponics{ + color = "#754116" + }, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/spine) +"tcM" = ( +/obj/machinery/bodyscanner, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"tdH" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"tfo" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"tfE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"tgB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"tiI" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/box/glasses/meta, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room4) +"tjk" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"tjw" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock/glass{ + name = "Restrooms" + }, +/turf/simulated/floor/tiled/steel, +/area/tradeport/cafeteria) +"tjz" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"tjO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/prepainted/command, +/area/shuttle/scoophead/engineering) +"tjV" = ( +/obj/item/stool/padded, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room1) +"tmd" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"tna" = ( +/obj/structure/bed/chair/sofa/red/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room2) +"tnk" = ( +/obj/machinery/camera, +/obj/item/radio/intercom/trader{ + dir = 1; + pixel_y = 25 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"trw" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/r_wall/prepainted/command, +/area/shuttle/arrowhead) +"trD" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atm{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"tsd" = ( +/obj/structure/sink/kitchen{ + pixel_y = 17 + }, +/obj/machinery/holopad, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room4) +"tus" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"tuT" = ( +/obj/machinery/camera{ + dir = 4 + }, +/obj/machinery/vending/sovietsoda{ + contraband = list(/obj/item/reagent_containers/food/drinks/cans/crystalgibb = 20); + desc = "An old sweet water vending machine. It looks like someone crossed out the D and replaced it with an F."; + name = "BOFA"; + products = list(/obj/item/reagent_containers/food/drinks/cans/thirteenloko = 20) + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"twz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"tAW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"tBc" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/tall{ + pixel_y = 14; + pixel_x = 7 + }, +/obj/item/storage/single_use/mre/random, +/obj/item/storage/single_use/mre/random, +/obj/item/storage/single_use/mre/random, +/obj/item/storage/single_use/mre/random, +/turf/simulated/floor/carpet/patterened/blue, +/area/shuttle/scoophead/cockpit) +"tBI" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/box/glasses/meta, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room2) +"tBP" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/cafeteria) +"tDE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "motel7"; + name = "Room 1 Lock"; + pixel_y = -23; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room7) +"tEL" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room3) +"tEO" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/simulated/floor/tiled/techmaint, +/area/sector/nebula_tradeport/motel/arcade) +"tEX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"tFV" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel) +"tHv" = ( +/turf/simulated/wall/prepainted/exploration, +/area/shuttle/scoophead/main2) +"tHJ" = ( +/obj/machinery/light/small, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room2) +"tJq" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/box/glasses/meta, +/obj/item/storage/box/donkpockets, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room5) +"tNP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/sofa, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cafeteria) +"tQG" = ( +/obj/machinery/holopad, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"tQK" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"tRl" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"tSe" = ( +/obj/machinery/door/airlock/external/glass{ + icon_state = "door_locked"; + id_tag = "expansion_wing2"; + locked = 1; + name = "Wing Expansion - Under Construction" + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"tVG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/commons) +"tZo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"tZR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/machinery/door/airlock/silver{ + name = "Men" + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/tradeport/cafeteria) +"tZZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/gamblingtable, +/obj/structure/flora/pottedplant/shoot{ + pixel_y = 9; + pixel_x = 2 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/arcade) +"ubm" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"uci" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room4) +"ueS" = ( +/obj/machinery/light/small, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room3) +"ugc" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"ugZ" = ( +/obj/item/stool/padded, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room2) +"ujp" = ( +/obj/structure/bed/chair, +/obj/landmark/spawnpoint/job/trader, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"ukd" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room2) +"ulf" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/cable/pink{ + dir = 1 + }, +/obj/machinery/power/apc/hyper/west_mount, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"umb" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/item/gps/internal/base{ + name = "scoophead beacon"; + gps_tag = "SCOOP" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/cockpit) +"umU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"upk" = ( +/obj/structure/bed/chair/sofa/brown/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"upC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel) +"uqH" = ( +/obj/item/radio/intercom/trader{ + pixel_y = -25 + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"usD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"utC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/wall/prepainted/command, +/area/shuttle/scoophead/cockpit) +"uuk" = ( +/obj/structure/noticeboard{ + pixel_y = 29 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"uuY" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/storage/hooded/carp_costume, +/obj/item/clothing/suit/storage/hooded/bee_costume, +/obj/item/clothing/suit/storage/hooded/flash_costume, +/obj/item/clothing/suit/storage/hooded/ian_costume, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"uvg" = ( +/obj/structure/table/standard, +/obj/item/bodybag/cryobag{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/bodybag/cryobag{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/bodybag/cryobag{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/bodybag/cryobag{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"uxP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room5) +"uxQ" = ( +/obj/structure/lattice, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/space/basic, +/area/space) +"uxR" = ( +/obj/machinery/atmospherics/component/binary/pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/debris/cleanable/blood/gibs/robot/limb, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"uyb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/obj/structure/cable/orange{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"uyl" = ( +/obj/structure/bed/chair/sofa/brown/right, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"uyE" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room7) +"uBu" = ( +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"uDj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room4) +"uEv" = ( +/obj/item/paper{ + info = "Freespace, open for anything." + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"uFC" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/patterened/red, +/area/shuttle/scoophead/office) +"uHN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant/minitree, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/grass_edge{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/monogrid, +/area/tradeport/spine) +"uKz" = ( +/obj/structure/bed/chair/sofa/brown/left{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"uKT" = ( +/obj/item/stool/padded, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"uMy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room1) +"uNh" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 8; + id_tag = "motel9" + }, +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/vip) +"uOf" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + id = "trade2port" + }, +/obj/machinery/atmospheric_field_generator/perma, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"uRl" = ( +/obj/structure/fuel_port{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"uSY" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"uUp" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"uWr" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/syndicate, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main2) +"uXV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"uZI" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/catering/bar_soft{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"ves" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"vey" = ( +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room2) +"veG" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/poster{ + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/shuttle/scoophead/cockpit) +"vff" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"vgG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"vii" = ( +/obj/structure/bed/chair/sofa/red/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room4) +"viA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/debris/cleanable/dirt, +/obj/landmark/spawnpoint/job/trader, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"vld" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel/room8) +"vns" = ( +/obj/structure/poster{ + pixel_y = -32 + }, +/obj/machinery/atm{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"vnT" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"vob" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/tradeport/commons) +"vrJ" = ( +/obj/structure/bed/chair/sofa/red/corner{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room5) +"vrM" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/glukoz, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"vtq" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room4) +"vuv" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"vuw" = ( +/obj/structure/bed/chair/sofa/brown/left, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"vvg" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"vyh" = ( +/obj/item/stool/padded, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room3) +"vym" = ( +/obj/structure/table/hardwoodtable, +/obj/item/material/knife, +/obj/machinery/recharger{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room4) +"vzd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room3) +"vzW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/motel/room7) +"vBJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/closet/crate/secure/corporate/saare, +/obj/item/clothing/head/helmet/tajaran, +/turf/simulated/floor/tiled/monotechmaint, +/area/tradeport/spine) +"vDS" = ( +/obj/structure/bed/chair/sofa/corner, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/camera, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cafeteria) +"vFV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room2) +"vGb" = ( +/obj/machinery/light/small, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room2) +"vGv" = ( +/obj/effect/floor_decal/sign/dock/one, +/turf/simulated/wall/r_wall, +/area/tradeport/facility) +"vGS" = ( +/obj/structure/transit_tube/station{ + automatic_launch_time = 40 + }, +/obj/structure/transit_tube_pod{ + dir = 8; + move_speed = 40 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/tradeport/spine) +"vHl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room3) +"vHZ" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel/room5) +"vKs" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"vLz" = ( +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room3) +"vLJ" = ( +/turf/simulated/wall/prepainted/medical, +/area/sector/nebula_tradeport/medical/public) +"vLW" = ( +/obj/structure/bookcase/legal/sop, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"vNG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room7) +"vPp" = ( +/obj/machinery/camera{ + dir = 1 + }, +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"vRl" = ( +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room4) +"vSG" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/obj/structure/curtain/open/black, +/turf/simulated/floor/tiled/techmaint, +/area/sector/nebula_tradeport/motel/room1) +"vTE" = ( +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room4) +"vTT" = ( +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room4) +"vWv" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room4) +"waw" = ( +/obj/machinery/atmospherics/component/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"waI" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"waX" = ( +/obj/machinery/power/apc/alarms_hidden/east_mount, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/facility) +"wcE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"wdl" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/alarms_hidden/north_mount, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel) +"wgI" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"whD" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "0-8"; + dir = 8 + }, +/obj/machinery/power/apc/alarms_hidden/east_mount, +/turf/simulated/floor/carpet/patterened/red, +/area/shuttle/scoophead/office) +"wlu" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main2) +"wmD" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -12 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8; + frequency = 1380; + id_tag = "tradeport_hangar_dock_pump" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room5) +"wny" = ( +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/tradeport/facility) +"woZ" = ( +/obj/structure/bed/chair/sofa/black{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/commons) +"wpW" = ( +/obj/machinery/light/flamp, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"wqg" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window/wooden{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/shuttle/scoophead/cockpit) +"wqt" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/scoophead/engineering) +"wqT" = ( +/obj/structure/bed/chair, +/obj/landmark/spawnpoint/job/trader, +/obj/machinery/air_alarm/alarms_hidden{ + pixel_y = 22; + req_one_access = list(160) + }, +/turf/simulated/floor/wood, +/area/tradeport/commons) +"wtb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"wux" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Scoophead Trade Shuttle" + }, +/obj/structure/flora/pottedplant/tall{ + pixel_y = 14; + pixel_x = 7 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/carpet/patterened/red, +/area/shuttle/scoophead/office) +"wvG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"wAb" = ( +/obj/machinery/atmospherics/component/unary/engine{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/scoophead/engineering) +"wAp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"wAE" = ( +/obj/machinery/door/airlock/silver{ + name = "Cyborgs" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tradeport/cafeteria) +"wBj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"wBy" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -12 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8; + frequency = 1380; + id_tag = "tradeport_hangar_dock_pump" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room6) +"wCX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/tradeport/cafeteria) +"wEf" = ( +/obj/machinery/light, +/obj/machinery/vending/loadout/overwear, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"wEN" = ( +/obj/structure/table/hardwoodtable, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_x = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/snacks/pancakes, +/obj/item/reagent_containers/food/snacks/pancakes, +/obj/item/reagent_containers/food/snacks/pancakes, +/obj/item/reagent_containers/food/snacks/pancakes, +/obj/item/reagent_containers/food/snacks/pancakes, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"wFr" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/commons) +"wIT" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel/room6) +"wKo" = ( +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/red/left{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room6) +"wKr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"wKT" = ( +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/tradeport/cafeteria) +"wMY" = ( +/obj/structure/table/hardwoodtable, +/obj/structure/bedsheetbin, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/alarms_hidden/north_mount, +/obj/machinery/camera, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"wPd" = ( +/obj/machinery/atmospherics/component/binary/pump/high_power/on{ + dir = 1; + name = "Air Supply"; + target_pressure = 1000 + }, +/turf/simulated/floor/plating, +/area/tradeport/atmospherics) +"wQu" = ( +/obj/machinery/atmospherics/component/unary/heater{ + dir = 8 + }, +/obj/structure/cable/pink{ + icon_state = "2-4"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/scoophead/engineering) +"wQZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/wall/wood/hardwood, +/area/sector/nebula_tradeport/motel/room4) +"wSG" = ( +/obj/structure/table/hardwoodtable, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room7) +"wSZ" = ( +/obj/spawner/window/low_wall/reinforced/full/firelocks, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/cockpit) +"wUd" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room5) +"wWB" = ( +/turf/simulated/wall/r_wall, +/area/sector/nebula_tradeport/motel/room7) +"wWV" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"wXc" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/grass/heavy/indoors, +/area/tradeport/safarizoo) +"wXR" = ( +/obj/machinery/button/remote/blast_door{ + id = "clerk"; + pixel_y = 27; + req_access = list(160) + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/commons) +"xaZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/sector/nebula_tradeport/motel) +"xbJ" = ( +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/closet/largecardboard, +/obj/item/clothing/accessory/hawaii/random, +/obj/item/clothing/under/hawaiian, +/obj/item/reagent_containers/food/snacks/sliceable/pizza/pineapple, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/main) +"xcp" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"xeQ" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"xfG" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver{ + id_tag = "motel7" + }, +/turf/simulated/floor/airless, +/area/sector/nebula_tradeport/motel/room7) +"xgi" = ( +/obj/structure/table/marble, +/obj/item/radio/intercom/trader{ + dir = 1; + pixel_y = 25 + }, +/obj/item/material/knife/butch/plasteel, +/obj/item/material/kitchen/rollingpin/durasteel, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/wmarble, +/area/tradeport/commons) +"xhh" = ( +/obj/effect/debris/cleanable/generic, +/turf/simulated/floor/tiled/old_tile/red, +/area/tradeport/commons) +"xhP" = ( +/obj/machinery/light/spot{ + dir = 4; + nightshift_allowed = 0 + }, +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/sector/nebula_tradeport/medical/public) +"xij" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"xmt" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room2) +"xoh" = ( +/obj/machinery/vending/loadout/loadout_misc, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"xoJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"xoQ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"xpa" = ( +/obj/item/storage/laundry_basket{ + pixel_y = 11; + pixel_x = 3 + }, +/obj/machinery/washing_machine, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"xsx" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "spine_inbound" + }, +/turf/simulated/floor/airless, +/area/space) +"xti" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel, +/area/tradeport/commons) +"xtC" = ( +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/table/hardwoodtable, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/sector/nebula_tradeport/motel/room4) +"xtS" = ( +/obj/machinery/power/smes/buildable{ + charge = 15000; + cur_coils = 3 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_dirty/dark, +/area/shuttle/arrowhead) +"xuJ" = ( +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/computer/shuttle_control/explore/trade/scoophead, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/cockpit) +"xvE" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/scoophead/cockpit) +"xwL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"xAd" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/map_helper/airlock/door/ext_door, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"xAe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room4) +"xBy" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room3) +"xHj" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on, +/obj/machinery/computer/arcade/orion_trail, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/cafeteria) +"xIp" = ( +/obj/structure/table/hardwoodtable, +/obj/structure/flora/pottedplant/stoutbush{ + pixel_y = 12 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"xKe" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cafeteria) +"xOL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tradeport/cafeteria) +"xQl" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel) +"xTL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/patterened/blue, +/area/sector/nebula_tradeport/motel/room6) +"xUw" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -12 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/on{ + dir = 8; + frequency = 1380; + id_tag = "tradeport_hangar_dock_pump" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room7) +"xYE" = ( +/obj/structure/lattice, +/obj/structure/railing/grey, +/turf/space/basic, +/area/space) +"xYQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/tradeport/safarizoo) +"ycq" = ( +/obj/structure/bed/chair/sofa/right, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/machinery/air_alarm/alarms_hidden/north_mount{ + name = "north bump"; + pixel_y = 28; + req_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tradeport/cafeteria) +"yfg" = ( +/turf/simulated/wall/prepainted/command, +/area/shuttle/scoophead/main) +"yfs" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/cash_register{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel) +"yfW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/tradeport/cafeteria) +"ygc" = ( +/obj/structure/lattice, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/shuttle/scoophead) +"ygJ" = ( +/obj/effect/floor_decal/spline/fancy{ + dir = 6 + }, +/turf/simulated/floor/bmarble, +/area/tradeport/commons) +"ygM" = ( +/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/tradeport/facility) +"ygR" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/map_helper/airlock/door/ext_door, +/obj/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + frequency = 1380; + id_tag = "scoophead_exterior_sensor"; + master_tag = "tradeport_scoophead_docker"; + pixel_x = 24; + pixel_y = -8 + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/shuttle/scoophead/main) +"yhz" = ( +/obj/structure/bed/chair/sofa/red{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/carpet/turcarpet, +/area/sector/nebula_tradeport/motel/arcade) +"yhD" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(160) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/silver{ + id_tag = "motel6" + }, +/turf/simulated/floor/wood, +/area/sector/nebula_tradeport/motel/room6) +"yin" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/bed/chair/comfy/red{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/carpet/arcadecarpet, +/area/sector/nebula_tradeport/motel/arcade) +"yio" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/sector/nebula_tradeport/motel/room3) + +(1,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(2,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aiQ +aDh +"} +(3,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(4,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(5,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(6,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(7,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(8,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(9,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(10,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(11,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(12,1,1) = {" +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(13,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +aDh +aDh +nBl +nBl +nBl +aDh +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(14,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +aDh +aDh +nBl +sfh +nBl +aDh +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(15,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +aDh +nBl +nBl +naT +nBl +nBl +acd +acd +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(16,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +aDh +nBl +fir +tbk +jQe +nBl +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(17,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +nBl +rEe +cuq +etX +nBl +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(18,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +fMQ +nBl +kMj +bAj +uUp +nBl +bho +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(19,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +fZy +fZy +qiw +ihy +fUL +fZy +fZy +aMf +aLS +aLS +aMf +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(20,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +fZy +xtS +uyb +lLJ +wgI +mMt +dVq +adH +azW +abu +aWt +akn +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(21,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +fZy +qey +nkf +mKA +jQK +fZy +fZy +aMf +aRI +aXr +aWt +akn +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(22,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +fZy +gFq +jlW +jVW +oUA +btw +fZy +aMf +amv +aMp +aWt +akn +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(23,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +fZy +hMY +rMJ +iFs +rMJ +cyy +fZy +aMf +agQ +api +aWt +akn +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(24,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +mlI +cUz +ojC +bYS +ojC +cUz +trw +aMf +acw +aAN +aWt +akn +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(25,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +nvl +nvl +mlI +dZV +trw +nvl +nvl +aMf +aUc +aPF +aWt +akn +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(26,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +nvl +nvl +nvl +acd +acd +aMf +acw +aty +aWt +akn +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(27,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aMf +aMf +aCq +aAk +aMf +aMf +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(28,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aMf +aTH +acw +aOS +aLF +aMf +aMf +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(29,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aMf +aMf +aMf +aMf +aMf +aMf +arB +acw +arz +atC +aBW +aMf +aMf +abC +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(30,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +fGL +fGL +fGL +fGL +aMf +asa +asa +asa +asa +asa +asa +aLH +asa +asa +asa +asa +aMf +abC +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(31,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +eiW +aMf +pLj +pLj +pLj +aMf +asa +hSQ +eKn +oAr +qAM +asa +apK +asa +aac +aIL +avQ +ans +akn +acd +acd +acd +acd +acd +aRT +aRT +acd +acd +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(32,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +eiW +ans +aZD +aZD +oBo +aMf +asa +kWI +cKu +mHG +dQx +asa +aAF +asa +aKt +aZD +aZD +ans +aVD +aIj +aRT +aRT +aRT +aRT +aIj +aSo +aRT +acd +aRT +aRT +aIj +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(33,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +eiW +ans +aZD +aZD +aZD +aei +sSX +eok +dMM +dMM +mtk +aCH +aAF +aei +auv +aMz +aQr +ans +aVD +aIj +aIj +aIj +aIj +aIj +aIj +aIj +aIj +aIj +aIj +aIj +aIj +aRT +aRT +aRT +aRT +aRT +aRT +aRT +aRT +aRT +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(34,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +eiW +ans +bAY +mdG +aMz +aMf +asa +asa +asa +asa +asa +asa +afY +asa +asa +asa +asa +aMf +atf +awk +awk +awk +awk +awk +awk +awk +awk +awk +awk +awk +awk +awk +awk +awk +awk +awk +awk +awk +awk +atf +atf +atf +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(35,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +eiW +aMf +asa +asa +asa +aMf +czL +osz +qIM +jdu +asa +aAg +ayA +aIZ +aLh +aLh +aSb +aMf +aIx +aEd +aEd +aEd +aEd +aEd +ael +aEd +aEd +aEd +aEd +aEd +alU +aEd +aEd +aEd +aEd +aEd +aEd +aEd +aEd +aEd +ajL +atf +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(36,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +xYE +aMf +aMf +aMf +aMf +aMf +hFu +mXe +jVe +doz +asa +ace +alM +aja +aug +aom +aDS +aMf +aVE +aXl +aPx +aPx +aPx +aXl +atV +arH +aOb +aOb +aOb +arH +axx +akS +aPk +aPk +aPk +aPk +aPk +aPk +aQg +aEd +aKa +awk +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(37,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +eiW +aYf +blL +blL +blL +aMf +tfE +asa +asa +asa +asa +atq +alM +aqY +aug +aqL +aDS +aMf +aVE +aPx +aEC +aXu +ahX +aPx +atV +aOb +arL +ahI +aqS +aOb +atV +aEY +aFt +aMw +aVw +akE +aEV +aFt +aBq +aEd +aKa +awk +aRT +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(38,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +acd +eiW +aYf +blL +pbm +rMg +aMf +nMv +aPO +jJQ +aPO +aPO +aip +ann +ahm +abd +aZI +asG +aMf +aVE +aIG +awJ +afD +aKl +aXl +atV +arH +awI +aWg +akO +arH +azA +aUM +aAb +aDx +aRH +aOQ +aTM +aQb +aHk +aEd +aKa +awk +aRT +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(39,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +fGL +fGL +fGL +fGL +fGL +fGL +fGL +fGL +fGL +fGL +fGL +uxQ +fGL +fGL +fGL +fGL +fGL +fGL +fGL +fGL +cWH +aYf +blL +cFZ +rMg +aMf +tdH +uNh +asa +ndY +asa +afg +ayw +asF +agA +aPO +aGt +aMf +aZw +aoe +ane +aAZ +aGh +aXl +atV +aGU +auC +aWq +aLl +arH +aeg +aks +aRU +aBI +axh +aYM +aJs +adC +aks +aEd +aKa +awk +aIj +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(40,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +hzl +hzl +cer +cer +cer +cer +jnN +piK +piK +piK +piK +qIT +cJE +cJE +cJE +cJE +qWE +vSG +vSG +vSG +qWE +qWE +blL +eME +blL +aMf +uuk +cXs +asa +mUJ +ngf +asa +aVn +arE +aRj +abE +aJF +aMf +aVE +aXl +aCT +anj +aLU +aXl +atV +arH +adb +aDz +aVv +arH +aeg +aCS +aHu +adU +aog +aog +aNU +aCN +aCS +aEd +aKa +awk +aIj +aRT +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(41,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +hzl +vTE +nIB +vRl +vtq +vTT +vLz +phM +fxW +fxW +phM +vey +cQi +eBH +fOy +eCI +sqy +qOg +hMU +iVk +kxF +sqy +aYf +mwu +daD +lKs +jBe +jFU +asa +lbx +fGg +asa +aiH +asp +aJF +aJF +aJF +aMf +aVE +aPx +aQq +anj +ahR +aXl +atV +aTp +asK +alL +apu +aIs +aeg +aEd +aog +aUy +aog +aog +aTA +aQz +aEd +aEd +aKa +awk +aIj +aSq +aRT +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(42,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +hzl +vTE +rKU +vRl +vii +jXt +vLz +xBy +fxW +fxW +xBy +vey +xmt +eBH +tna +nUT +sqy +mFe +hMU +hCk +qfv +sqy +aYf +sJV +sJV +aMf +egt +cXs +asa +asa +asa +asa +atG +aEp +aoP +aoZ +aEQ +aMf +aVE +aXl +aIh +anj +aHO +aXl +atV +aIs +arr +auO +ajv +aIs +aeg +aog +aog +aiS +aog +aog +aJY +apU +aog +aEd +aKa +awk +aIj +aSq +aRT +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(43,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +hzl +vTE +jHF +vRl +vRl +dOZ +vLz +oBN +fxW +fxW +hqf +vey +gZF +eBH +eBH +vGb +sqy +cRP +hMU +hMU +lPS +sqy +tFV +tFV +tFV +tFV +wtb +sFL +sFL +mAL +umU +aFw +adc +aJq +asa +asa +asa +aMf +aVE +aPx +aQK +anj +aRn +aXl +atV +aTp +aza +aZQ +aId +aIs +aeg +aog +agT +agT +aog +aog +aog +aog +aog +aEd +aKa +awk +aIj +aSq +aRT +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(44,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +hzl +vTE +kYl +oBC +oBC +ggg +vLz +sMT +vyh +vyh +fAe +vey +gLI +ugZ +ugZ +nNt +sqy +lQd +tjV +tjV +hOj +sqy +aFw +aFw +aFw +qqN +vuv +ojq +usD +gXJ +qvo +aFw +aTo +aGK +apj +apj +aMf +aMf +aVE +aXl +aTD +aMX +aZj +asT +atV +aIs +aky +ain +awy +aPJ +aeg +aog +agT +agT +agT +agT +agT +agT +aog +aEd +ahd +atf +aIj +aSq +aIj +aNk +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(45,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +hzl +vTE +tiI +kgu +qrf +xAe +vLz +mIR +suE +bXs +vHl +vey +tBI +htg +mOb +rpe +sqy +jDI +pvG +mGF +uMy +sqy +ngg +dCd +nIU +ojJ +xIp +qLC +cXs +cXs +cWD +aFw +aDn +afP +anA +aOH +atf +apv +aWP +aIG +aBO +aBU +aXl +aIG +atV +aIs +aPN +ajU +apu +aaR +aeg +aog +atA +agT +agT +agT +agT +aso +aog +aEd +aKa +awk +aIj +aSq +aSq +aNk +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(46,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +hzl +vTE +tsd +lfZ +uci +xAe +vLz +dgI +tEL +gPE +vHl +vey +byE +lxm +pFo +rpe +sqy +bOU +ikV +lLF +uMy +sqy +vLW +mHz +kjD +kji +kYf +lFD +jSR +cXs +cXs +aOy +aHW +aJz +akD +axS +aoN +apv +aWP +aIG +acu +arC +aYL +aIG +atV +aIs +aFf +aUh +amt +aIs +aeg +aog +agT +agT +agT +agT +agT +agT +aog +aEd +aKa +awk +aSq +aSq +aSq +aNk +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(47,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +hzl +vTE +xtC +vym +kbY +jzX +vLz +fuN +bXL +rMl +ueS +vey +lza +kKj +pRx +tHJ +sqy +dNR +crj +nfH +fci +sqy +vLW +mHz +yfs +kji +tAW +bCh +cXs +cXs +waI +aFw +aLW +aUg +aaC +akD +aoN +apv +aDO +aKg +aJa +anF +aAl +aIG +azA +aNF +auk +atJ +aXB +arH +aeg +aog +agT +agT +agT +agT +agT +awv +aog +aEd +aKa +awk +aSq +aSq +aRT +aNk +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(48,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +hzl +vTE +vTE +wQZ +sws +xAe +vLz +vLz +vzd +icj +vHl +vey +vey +vFV +hTW +rpe +sqy +sqy +lwk +kge +uMy +sqy +iUU +mVm +hUx +kji +tAW +cXs +cXs +uKz +ieG +aFw +aLu +app +ass +aEx +aoN +apv +aWO +aXc +aNV +aoA +asQ +aSw +aeg +anx +aqO +aeo +awi +aTn +aeg +aog +aVR +aXQ +agT +agT +agT +ayE +aog +aEd +aKa +awk +aIj +aSq +aRT +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(49,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +hzl +vTE +jUK +uDj +qmI +xAe +vLz +yio +ljb +dIl +vHl +vey +cAr +ukd +eEX +rpe +sqy +keh +lJQ +hkP +uMy +sqy +sqp +nPm +wpW +kji +tAW +cXs +cXs +lFD +jlU +abr +aby +awO +adj +aVm +aoN +apv +aQL +aPj +aNB +aIW +aVi +aCy +aeg +arU +agW +apL +aqP +avN +aeg +aog +aVM +avI +agT +agT +agT +aaf +aog +aEd +aKa +awk +aIj +aRT +aRT +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(50,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +hzl +ruM +vWv +omw +sws +hhX +vLz +qnU +iuZ +icj +eBj +vey +rWr +kFJ +hTW +ehl +sqy +hqZ +ekB +kge +oFP +sqy +sqp +nPm +kLs +kji +uyl +jlU +upk +sLr +hGc +abr +awu +aCZ +aOj +aWb +aoN +akY +aeh +aEd +aEd +aEd +aEd +aEd +awt +aEd +aEd +aEd +aEd +aEd +aeg +aog +aXG +aij +agT +agT +agT +axJ +aog +aEd +aKa +awk +aIj +acd +acd +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(51,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +aDh +hzl +vTE +vTE +wQZ +rtl +hlZ +vLz +vLz +vzd +cQQ +kAQ +vey +vey +vFV +mhL +qNM +sqy +sqy +lwk +fcI +lAe +sqy +wMY +pIG +ime +kji +vuw +gPc +eSp +cXs +koU +aFw +aDJ +awO +adj +aVm +aPK +afA +azJ +aiG +aiG +aUB +aQn +aQn +aPd +aQn +aUB +aoI +aEO +aEO +afC +aog +acC +aij +agT +agT +agT +avI +aog +aEd +aKa +awk +aRT +aRT +acd +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(52,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +aDh +tFV +hzi +dIo +hjC +jNt +fCA +qfx +ooi +dXo +mHd +gCT +qfx +ltU +kKq +bbg +fCA +ltU +ltU +cUF +bbg +fCA +cEz +mhk +rfH +ime +kji +xIp +cXs +cXs +cXs +cWD +aFw +aCP +awO +adj +aMJ +atf +aUE +azI +azI +aHl +ayN +aEd +aEd +aEd +aEd +ayN +ajx +atV +atV +atV +aog +aog +aog +aZf +aZf +aog +aog +aog +aEd +aKa +awk +aRT +aRT +acd +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(53,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +tFV +wdl +oWk +upC +eOa +xaZ +hsH +gEl +kwi +eOB +hhI +lTH +cfJ +nrK +eOB +kJw +lTH +jyr +kwi +eOB +kJw +cJV +dnD +syk +jvl +fse +xQl +xQl +xQl +xQl +bEl +aIe +aKB +aJh +aEs +aVm +aoN +aWH +aXS +aMt +aqa +aEd +aHi +aHi +aHi +aHi +aEd +asV +alU +atV +atV +atV +atV +atV +atV +atV +atV +atV +atV +atV +akh +atf +aRT +aRT +acd +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(54,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +vld +pnm +het +iQK +pnx +gVZ +cWp +cWp +qPr +jJN +xfG +diZ +diZ +opQ +lrC +yhD +sqY +sqY +uxP +sQf +coX +sqY +xpa +nPm +wpW +ime +ime +ime +ime +wpW +bnC +aaB +aby +afM +aYp +aVm +aoN +aHw +aXS +aCo +aHl +aEd +aHi +aDH +aiz +aBm +aEd +aHv +atV +aEd +aEd +aEd +aEd +aoF +aoF +aoF +aEd +aEd +aEd +aEd +aKa +awk +aRT +acd +acd +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(55,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +vld +het +qOs +kfI +eoV +qWC +cWp +jVG +wSG +xUw +tDE +diZ +kgL +gMD +wBy +fvH +sqY +tJq +fQy +wmD +nlw +sqY +kaF +qdi +xwL +xwL +xwL +xwL +xwL +xwL +tgB +aFw +aaX +aCQ +aYp +aVm +asw +azZ +aHw +aCo +aHl +aEd +aHi +axn +anT +aBm +aEd +aHv +atV +aEd +aEd +aEd +aoF +aoF +aAA +aoF +azT +aEd +aEd +aEd +aKa +awk +aSq +aRT +acd +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(56,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +vld +het +jLe +ljc +ojz +jFL +cWp +dDD +vNG +qkD +vzW +diZ +omp +xTL +kDN +wKo +sqY +scx +cFT +rLb +hIR +sqY +haM +ehK +uBu +sqp +cWD +bHd +bHd +bHd +cWD +aFw +ayd +aCQ +aYp +aVm +anN +azZ +aHw +aCo +aHl +aEd +amL +ahk +aMU +aYI +aEd +aHv +atV +aEd +aEd +aEd +acr +aAJ +aYC +aAs +acr +aEd +aEd +aEd +aKa +awk +aRT +aRT +acd +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(57,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +vld +het +sKi +dhw +pSM +snj +cWp +uyE +nZW +uyE +rXJ +diZ +qnM +cmo +dnR +iYy +sqY +wUd +rOI +etO +vrJ +sqY +aFw +aFw +aFw +aFw +aFw +aFw +aFw +aFw +aFw +aFw +ayd +aCQ +aYp +aVm +aoN +azZ +aHw +aCo +aHl +aEd +ahe +aLz +aLz +aBm +aEd +aHv +atV +aEd +aEd +aEd +acr +anS +aku +aNj +acr +aEd +aEd +aEd +aKa +awk +aRT +acd +acd +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(58,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +vld +vld +vld +vld +cst +cst +wWB +wWB +wWB +jjT +jjT +wIT +wIT +wIT +luQ +luQ +vHZ +vHZ +vHZ +rWc +rWc +vHZ +tFV +tFV +tFV +tFV +tFV +tFV +tFV +tFV +tFV +tFV +aCP +aCQ +aYp +aVm +aoN +aIV +aHw +aCo +aHl +aEd +aVK +aCA +aZE +apN +aEd +aHv +atV +aEd +aEd +aEd +aak +aak +aJx +aVV +aak +aEd +aEd +aEd +aKa +awk +aRT +aRT +acd +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(59,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +enG +asP +iCp +rmx +qCI +qCI +rmx +eaJ +kXi +gaH +asP +aBb +anJ +aoq +apb +atf +aif +aHw +aMt +aHl +aEd +auK +add +aNu +aCY +aEd +aHv +atV +acr +acr +aEd +aEd +aoF +aSW +aap +aEd +aEd +acr +acr +aKa +awk +aRT +aRT +acd +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(60,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +aRT +aRT +aRT +acd +acd +acd +acd +acd +acd +aRT +aRT +aRT +acd +acd +acd +acd +acd +acd +aRT +aRT +hoc +qCI +waw +lXK +nLg +qCI +eaJ +pYe +kXi +aSQ +awu +aFe +akM +aWb +aoN +azZ +aHw +aCo +aqa +aEd +avE +aue +aIl +aEK +aEd +aHa +atV +acr +acr +ahK +adY +aZr +aRe +awM +aUL +ahq +acr +acr +aKa +awk +aRT +aRT +acd +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(61,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +aRT +aRT +hoc +qCI +uEv +mpc +opb +fuP +eaJ +pYe +qCI +aSQ +aby +aCQ +aYp +aVm +aoN +azZ +aHw +aCo +aHl +ayN +aEd +aOt +aEd +aEd +ayN +aHv +atV +aEd +aak +adY +ays +aEZ +aUz +ajp +aID +aUL +aak +aEd +aKa +awk +aRT +aRT +aNk +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(62,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +aRT +aRT +hoc +qCI +lWk +haI +qCI +qCI +qCI +pYe +qCI +afk +aby +aCQ +aYp +aVm +ano +azZ +aHw +aLv +aor +akA +akA +akA +akA +akA +akA +aNh +atV +aEd +aEd +aLi +aLi +ati +atw +aaY +aLi +aLi +aEd +aEd +aKa +awk +aIj +aNk +aNk +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(63,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +aRT +aRT +hoc +qCI +qCI +haI +lWk +qCI +qtX +qCI +qCI +aNq +aby +aCQ +aYp +aVm +aLY +azZ +azZ +aSv +aSv +avu +aPm +aPm +aPm +avu +azI +aNh +atV +aEd +aEd +asg +asg +aak +alE +aak +asg +asg +aEd +aEd +aKa +awk +aIj +aNk +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(64,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aRT +acd +acd +acd +acd +acd +aRT +aRT +aRT +aRT +hoc +qSh +oBg +bsc +oBg +oBg +oBg +iBb +oBg +ahy +aAM +atB +aYp +aVm +aoN +aIV +azZ +akP +azZ +azZ +azZ +azZ +azZ +azZ +apo +aNh +alU +aEd +aEd +aEd +aEd +aEd +aVu +aEd +aEd +aEd +aEd +aEd +aJK +awk +aIj +aIj +aRT +aRT +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(65,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aRT +acd +acd +acd +acd +aRT +aRT +aRT +aRT +aRT +asP +waX +dEz +haI +qCI +dEz +qCI +qCI +qCI +aSQ +aAY +asj +aYp +aVm +aoN +amd +amQ +aVI +amQ +aQh +amQ +azZ +azZ +azZ +aaF +aaQ +azg +azg +aih +atE +aih +aih +aZc +aih +aih +aih +atE +aih +abR +atf +aIj +aIj +aIj +aRT +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(66,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aRT +acd +acd +acd +acd +aRT +aQo +aQo +aQo +aQo +aQo +aQo +aQo +fAl +aQo +aQo +aQo +aQo +aQo +aQo +arT +aNz +aYp +aVm +aTY +awe +aBF +aCC +auX +aDk +auX +ags +aqG +aPX +azZ +acc +aHl +azV +amo +aOD +aOD +ayj +asE +aGn +aSI +azZ +auT +aDp +aDp +aoN +aIj +aIj +aIj +aRT +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +ahn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(67,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aRT +acd +acd +acd +aRT +aRT +aQo +mYX +mFk +jOw +rNm +jOw +psr +clf +jOw +jOw +rSt +iBk +jvC +aQo +aus +aws +aYp +aVm +aTY +aoG +aBF +ala +lbr +auH +auX +aVh +azX +aPX +azZ +aAi +aEN +afB +aes +apB +aid +apB +ayP +akP +azZ +azZ +auT +auT +auT +aoN +aIj +aIj +aIj +aRT +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(68,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aRT +acd +acd +acd +acd +xYE +tEO +oqm +jOw +jOw +aQo +aQo +aQo +fAl +jOw +jOw +dHE +ioY +dxa +aQo +aFk +aCQ +aYp +aFF +aTY +aTN +aBF +aeM +auX +aOn +auX +atP +arA +afX +aTi +aTE +aOq +aOq +aOq +aOq +aTE +aOq +aHj +aTE +aOq +aOq +aWY +aOq +aOq +aoN +aIj +aIj +aIj +aRT +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(69,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +acd +acd +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aRT +acd +acd +acd +acd +xYE +tEO +jkH +gzZ +oGt +aQo +cHv +bch +dzP +jOw +jOw +lbo +jOw +jOw +aoH +aby +aNA +azp +apV +ads +aWA +aBZ +aMH +abz +abz +ats +aQR +ayk +acU +aFp +atj +aLa +aLa +amy +atK +aGf +aEr +aTS +aMR +aVp +aoz +avh +aTv +aTv +ajk +ajk +ajk +aRT +aRT +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(70,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aNk +aRT +acd +acd +xYE +tEO +duf +rDE +yhz +aQo +lnx +tZZ +irN +ncQ +ncQ +yin +jGl +hEu +aym +aKB +aGX +aYp +adT +aLp +ajr +aSn +aBN +azy +ajr +awG +aQG +aLj +ayu +awl +ajH +auo +anX +aRl +arv +avT +axX +amY +aBk +aYX +aNy +aLt +amk +aHd +awp +aOg +aXk +ajk +aRT +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(71,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aNk +aNk +aNk +aDh +aDh +aQo +dLg +jLD +dMY +aQo +mJE +bWe +jjV +rvi +jxV +pfv +meD +eKY +aQo +aby +aCQ +aYp +aTj +aet +aet +aet +aet +aet +aet +aet +aet +aet +aMP +aut +atZ +aXq +aMP +aut +atZ +aXq +aMP +aut +atZ +aiJ +axH +azw +aIp +aIp +aRR +aGH +aGH +aXk +ajk +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(72,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aNk +aNk +aNk +aNk +aDh +aQo +aQo +aQo +aQo +aQo +aQo +aQo +aQo +aQo +aQo +aQo +aQo +aQo +aQo +aBb +anJ +afH +aOL +aet +avM +avM +avM +aet +akN +akr +aWu +aet +aAz +asx +aBw +aXq +aAz +asx +aBw +aXq +aAz +asx +aBw +aiJ +aqu +azw +aKw +aUI +aQZ +amc +aqq +aGH +ajk +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(73,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aDh +aDh +aDh +aNk +aNk +aNk +aNk +aNk +aNk +aNk +aNk +aNk +aNk +aNk +ars +aRY +gZx +mgo +kLg +abx +hBl +pAI +iVZ +vKs +mBg +cfu +bYr +abx +avS +aCQ +aYp +aVm +aet +afb +aHp +aYd +aet +aGE +air +aQi +aet +aKT +aGg +apz +aXq +aKT +aGg +apz +aXq +aKT +aGg +apz +aiJ +aJr +aJu +aMb +aUI +aQZ +acK +aqq +aGH +ajk +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(74,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aNk +aNk +aNk +aNk +aNk +aNk +aNk +aNk +ars +ars +aGa +aGa +aGa +aGa +aGa +aGa +ars +ljp +ljp +mre +ljp +abx +eGH +bcr +iVZ +itm +sjP +xcp +job +abx +aDJ +aCQ +aYp +aVm +aYZ +aQV +aSA +aYi +anY +air +asu +aet +aet +aXq +aXq +aXq +aXq +aXq +aXq +aXq +aXq +aXq +aXq +aXq +aiJ +ajT +aCv +aJQ +aUI +aQZ +amc +aqq +aGH +ajk +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(75,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +ars +aGa +aGa +aGa +aGa +aGa +aGa +aGa +ars +hgI +aRY +aRY +aRY +aRY +aRY +aRY +bwj +aRY +aRY +mre +mkh +abx +bEQ +plJ +iVZ +itm +sjP +tcM +rit +ahG +aEW +aiB +aYp +aFF +aet +aeU +adJ +aZH +aet +anY +aet +aet +acI +afI +aPP +aOm +aMo +aXX +aVU +arP +aRF +amr +aJb +aKC +aEw +atm +aCv +asi +aIp +aZo +aGH +aGH +aXk +ajk +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(76,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +ars +ars +aOx +aRY +aRY +aRY +aRY +aRY +aVJ +aDc +aVJ +aVJ +aVJ +aVJ +aVJ +aVJ +aVJ +aVJ +aVJ +aVJ +mre +aVJ +abx +vLJ +vLJ +vLJ +mlq +qGd +tQK +bcr +abx +aby +aCQ +aYp +aVm +aYZ +aCX +aQs +aAR +aoc +air +air +aet +aPP +aQF +aQF +aUi +aNp +avL +auF +acb +aBf +aWn +aJb +aKC +amT +aCs +aCv +aJL +aQH +aOa +ayx +aXk +ajk +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(77,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +ars +ars +abW +aVJ +aIr +aDb +aDb +aDb +aDb +aDb +aDb +gVm +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aMC +aVJ +mre +abW +dGF +lAm +dTw +vLJ +gPi +pHF +oJX +iAg +agw +aWs +aqm +agm +aOo +aJM +arc +aSU +amq +aoc +amB +air +aet +aHN +aIv +aAK +aBY +aNp +avL +aMQ +aaa +aBf +aDm +aJb +aAr +akx +aPi +aCv +aTv +aDT +ajk +ajk +ajk +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(78,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aGa +bwj +aVJ +aIr +apk +aiW +jFp +jFp +apW +apW +apW +aBx +apW +apW +apW +apW +caX +apW +aQt +gmf +dEe +dgm +aCk +dGF +itm +bcr +iVZ +itm +fIa +sjP +bcr +ayU +aby +anW +aXx +aUp +aGc +aMg +aHM +alw +aoc +asO +air +aet +aPP +aJe +aQF +aIO +aNp +avL +aHe +aAa +aBf +adz +aJb +aUA +apQ +aSM +atT +aTv +aTv +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(79,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aGa +tfo +aOl +apk +qoJ +aOA +vvg +vvg +aOA +aOA +aOA +aOA +aDN +aOA +aOA +anr +aOA +aOA +dwj +jFp +aIm +aeb +aRY +dGF +dDu +ius +vLJ +uvg +qOL +xhP +hqi +abx +aCJ +aFe +akM +aBr +aJC +aSx +aWm +aMi +aoc +aBD +aAq +aet +afI +aPP +aPP +aOm +aNp +avL +aRL +axo +aai +aWn +aJb +aGy +acO +aSM +aYU +aTv +aTv +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(80,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aGa +aRY +aed +aiW +aOA +aOA +dwj +dwj +aDN +aOA +nLQ +aOA +aOA +aOA +aOA +aOA +aOA +aOA +vvg +vvg +auN +ajY +eym +abx +abx +abx +abx +abx +abx +abx +abx +abx +amO +amC +aRV +axW +aet +aet +aet +aet +aet +aet +aet +aet +aJb +aJb +aJb +aJb +aNp +avL +aJb +aJb +aJb +aJb +aJb +aGy +acO +aSM +aAP +auY +aTv +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(81,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aGa +fSn +aHb +aRQ +aOA +aDN +aOA +aOA +aOA +aOA +aOA +aOA +aOA +uSY +aOA +aOA +aOA +aDN +dwj +dwj +auN +aeb +apg +amz +amz +ajW +aYA +aVH +afv +aaV +arV +anq +aby +aTT +aYp +aVm +anq +acM +aBC +azf +ani +aRt +akb +alB +aQm +aJb +aEk +abf +aNp +avL +aCg +aJb +aJb +aJb +aJb +aGy +acO +aSM +aAP +ahM +aTv +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(82,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aGa +aRY +aVJ +adK +aOA +aOA +aOA +aKP +aKP +anr +aKP +aOA +aOA +aOA +aOA +aOA +aOA +aOA +anr +nLQ +auN +aeb +aVJ +amz +amz +atL +awj +aIk +aaV +ami +aRr +anq +aKm +aTT +aYp +axb +anq +aNg +avc +avc +aJi +alB +aMT +aoD +aMs +aJb +aMn +aMv +aNp +avL +aqW +aJb +aJb +aJb +aJb +aGy +aUj +aSM +ahO +aTv +aTv +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(83,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aGa +aRY +aVJ +adK +aLb +aOA +aOA +atS +aKP +aKP +aKP +aOA +aOA +avX +aOA +aOA +aOA +aOA +aOA +aOA +auN +ayM +aLI +amz +abv +amX +amN +aVH +aEB +aYY +aXd +anq +awu +aFe +akM +aWb +anq +awq +awq +aRo +azb +alB +aph +auj +avv +aJb +aQP +aUY +aNp +avL +aqW +aPL +asd +aqe +aJb +aTv +abm +aez +aRu +aTv +aTv +aRT +aRT +aRT +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(84,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +ars +ars +oYn +aVJ +adK +aLb +aLb +nLQ +aOA +aKP +aKP +aKP +aOA +aOA +aOA +uSY +aOA +aOA +aOA +nLQ +aOA +afW +acv +aVJ +amz +ahW +aLR +avg +aYe +aaV +aqo +ahL +anq +aeN +avJ +aYp +aVm +anq +adL +alB +alB +alB +alB +alB +aas +aOG +aJb +aWK +aWK +aNp +avL +ajb +apx +aGZ +aGZ +auf +aTv +aez +aJP +aOk +aTv +aIj +aRT +aRT +aRT +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(85,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aGa +aVJ +aVJ +aVJ +adK +aLb +aLb +aKP +aKP +aKP +aKP +aKP +aOA +aOA +aOA +aOA +atS +aOA +aOA +aOA +aOA +aNH +aOX +atx +ajg +aTa +aTa +aAc +aTa +aTa +apd +aTa +aVC +aLZ +aUl +azp +aTt +aJE +aIK +aIK +arM +aIK +aIK +aIK +aOf +aIK +aEL +aiA +aiA +aVY +agJ +aSh +aKF +aMn +aMn +azx +aTv +awm +aTv +aTv +aTv +aIj +aIj +aRT +aRT +aRT +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(86,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aGa +aRY +aVJ +aRA +aLb +aLb +aLb +aLb +aLb +aKP +aKP +aOA +aOA +aOA +aOA +aOA +aOA +pJb +aOA +aOA +tmd +auN +aeb +aVJ +amz +aFU +aEB +aaV +aEB +aaV +aEB +atr +ayF +aby +avJ +aYp +aVm +agD +alB +alB +aHF +alB +alB +abF +alB +anZ +aJb +aWK +aWK +aNp +avL +auZ +auw +aMn +aMn +aMn +aTv +awU +afp +agt +aIj +aIj +aIj +aIj +aRT +aRT +aRT +aRT +aRT +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(87,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aGa +aRY +aVJ +adK +aLb +aLb +aLb +aLb +aLb +aOA +nLQ +aOA +aDN +dwj +vvg +dwj +aOA +aOA +aOA +aDN +aOA +auN +ajY +aeC +aSJ +aEB +aaV +aUJ +aaV +aUJ +aaV +aUJ +anq +avS +azB +agm +acF +anq +alB +aWo +aHF +aiU +alB +aye +alB +aoT +aJb +aWR +aTz +aNp +avL +aqW +aJU +avF +adk +aJb +aTv +adI +adx +agt +aIj +aIj +aRT +aRT +aRT +aRT +aRT +aRT +aRT +aRT +aRT +aRT +aRT +aRT +aNk +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(88,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aGa +fSn +aRS +gCY +ayX +ayX +ayX +qxV +ayX +taf +aYJ +aYJ +aXs +wXc +iIH +wXc +aYJ +aXs +aYJ +aYJ +aYJ +alm +aeb +aVJ +aSJ +aaV +aEB +aSf +aEB +aSf +aEB +aSf +anq +aKm +avJ +aYp +axb +anq +aIH +agF +aGR +aSd +alB +aCa +alB +awK +aJb +aMn +aMv +aNp +avL +aqW +aJb +aJb +aJb +aJb +aTv +alc +aTv +aTv +aIj +aRT +aRT +aRT +aRT +aRT +aRT +aRT +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(89,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aGa +aRY +lKf +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +ajB +seR +amz +qoI +aIn +aNT +aXF +aNT +aaV +aay +anq +aby +avJ +aYp +aVm +anq +aer +axq +axs +amF +aJj +azk +alB +acs +aJb +aCG +aKG +aNp +avL +aiI +aJb +aJb +aJb +aJb +aIj +aIj +aNk +aRT +aRT +aRT +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(90,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aGa +tfo +xYQ +ahc +aRY +aRY +aRY +aRY +aVJ +sTE +aRY +aRY +aRY +aRY +aRY +aRY +aRY +aRY +abW +aup +aVJ +aVJ +aVJ +aVJ +ars +amz +amz +amz +amz +amz +amz +amz +anq +apj +agK +afH +apj +anq +aop +aop +aop +aop +aop +aop +aop +aJb +aJb +aJb +aJb +aNp +avL +aJb +aJb +aJb +aJb +aJb +aIj +aNk +aNk +aRT +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(91,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +ars +ars +ars +aGa +aGa +aGa +aGa +aGa +aGa +ars +aGa +aGa +aGa +aGa +aGa +aGa +aGa +aGa +ars +ars +aGa +aGa +aGa +aGa +ars +aNk +aqc +aoJ +aoJ +alR +asB +abc +aJH +arN +aNN +adi +aPG +aeZ +abc +aCi +alR +aoJ +aoJ +aqc +aJb +aDB +aaz +aaz +aDE +aNp +avL +avo +aie +aLc +akz +aJb +aNk +aNk +aNk +aRT +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(92,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aNk +aNk +aqc +aoJ +acx +aUN +aEE +aql +atN +alq +aDo +aDy +alq +anB +aql +aEE +aGV +akU +aoJ +aqc +aJb +aFs +aFs +aaz +akT +aNp +avL +aRM +aBd +amJ +amJ +aJb +aNk +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(93,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aqc +aoJ +aST +aZB +aGw +abc +azF +aAn +ajS +aAn +aAn +azN +abc +aYw +aZB +aST +aoJ +aqc +aJb +aIA +adt +aaz +azD +aNp +avL +aqn +amJ +aiL +ard +aJb +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(94,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +abc +aqc +aUx +aqc +aan +abc +aoQ +aGm +aIY +aGm +aGm +anM +abc +acN +aqc +aUx +aqc +abc +aJb +aFs +aFs +aaz +arI +aNp +avL +aGM +amJ +aOp +amJ +aJb +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(95,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aDh +abs +abs +abs +abs +abs +abs +abs +aWv +apJ +adm +abs +abs +abs +abs +abs +abs +abs +abs +abs +abs +abs +abs +abs +abs +abs +abs +abs +aDh +aTq +aMr +xsx +abK +abw +aJS +aFP +aHh +aHh +aFK +abK +aFq +aCn +anz +aNk +aNk +aJb +aDB +aaz +abj +aDE +ajF +abn +agc +aKe +aNL +auR +aJb +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(96,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aMr +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +acT +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aSY +aTq +aMr +xsx +abK +aXC +aHD +amU +aWh +aWh +anb +abK +aFq +aCn +anz +aNk +aNk +aJb +aJb +aJb +aJb +aJb +aJb +aJb +aJb +aJb +aJb +aJb +aJb +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(97,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aMr +aBg +aVZ +aVZ +aVZ +aVZ +aVZ +aVZ +aVZ +aPp +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aET +aSY +aTq +aMr +xsx +abK +agE +aAV +amU +aWh +aWh +anb +abK +aFq +aSY +aTq +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(98,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aMr +aag +aag +aag +aag +aag +aag +aag +aag +acT +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aSY +aTq +aMr +xsx +abK +any +aVa +aVg +aqF +aVa +aCF +abK +aFq +aSY +aTq +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(99,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aMr +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +acT +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aSY +aTq +aMr +xsx +abc +aJV +awc +aAj +awc +awc +aAS +abc +aFq +aSY +aTq +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(100,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aMr +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +acT +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aSY +aTq +aMr +xsx +abK +aXp +adO +alb +aTm +aHh +aFK +abK +aFq +aSY +aTq +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aiw +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(101,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aMr +aBg +aVZ +aVZ +aVZ +aVZ +aVZ +aVZ +aVZ +aPp +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aET +aSY +aTq +aMr +xsx +abK +sHj +aFJ +amU +aWh +aWh +anb +abK +aFq +aSY +aTq +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(102,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +aDh +aMr +aag +aag +aag +aag +aag +aag +aag +aag +acT +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aSY +aTq +aMr +xsx +abK +cFM +ajI +amU +aWh +aWh +anb +abK +aFq +aSY +aTq +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(103,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aMr +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +acT +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aSY +aTq +aMr +xsx +abK +dtU +aVa +awX +aVa +aVa +ath +abK +aFq +aSY +aTq +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(104,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aMr +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +acT +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aSY +aTq +aMr +xsx +abc +irI +awc +aAj +awc +awc +aAS +abc +aFq +aSY +aTq +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(105,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aMr +aBg +aVZ +aVZ +aVZ +aVZ +aVZ +aVZ +aVZ +aPp +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aET +aSY +aTq +aMr +xsx +abK +uXV +aHh +aFP +aHh +aHh +aFK +abK +aFq +aSY +aTq +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(106,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aMr +aag +aag +aag +aag +aag +aag +aag +aag +acT +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aSY +aTq +aMr +xsx +abK +czm +aWh +amU +aWh +aWh +anb +abK +aFq +aSY +aTq +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(107,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aMr +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +acT +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aSY +aTq +aMr +xsx +abK +czm +aWh +amU +aWh +aWh +anb +abK +aFq +aSY +aTq +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(108,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aMr +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +acT +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aIS +aTq +aMr +xsx +abK +dtU +aVa +awX +aVa +aVa +ath +abK +aFq +aSY +aTq +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(109,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aMr +aBg +aVZ +aVZ +aVZ +ark +aEU +aEU +aEU +ayV +akv +akv +akv +aml +aPQ +akv +akv +aml +akv +akv +aml +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aET +aSY +aTq +aMr +xsx +abc +uHN +afs +aAj +awc +awc +aAS +abc +aFq +aSY +aTq +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(110,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aQv +aag +aag +aag +aag +aag +aag +aag +aag +acT +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aSY +aTq +aMr +xsx +abK +tcJ +apR +aZi +aHh +aHh +aFK +abK +aFq +aSY +aTq +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(111,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +avW +avW +avW +avW +avW +avW +aDh +aDh +aDh +aDh +aQv +aOe +aiv +aiv +aiv +aiv +aiv +aiv +aiv +acT +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aSY +aTq +aMr +xsx +abK +sFQ +aYa +aTW +aWh +aWh +anb +abK +aFq +aSY +aTq +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aNk +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(112,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +aDh +aDh +aQv +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +acT +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aSY +aTq +aMr +xsx +abK +sID +aHL +amU +aWh +aWh +anb +abK +aFq +aSY +aTq +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aNk +aNk +aSq +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(113,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +abk +avW +avW +avW +avW +avW +avW +avW +aDh +aQv +aBg +aVZ +aVZ +aVZ +ark +aEU +aEU +aEU +ayV +akv +akv +akv +aml +aPQ +akv +akv +aml +akv +akv +aml +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aET +aSY +aTq +aMr +xsx +abK +oad +aVa +awX +aVa +aVa +ath +abK +aFq +aSY +aTq +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aNk +aNk +aNk +aSq +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(114,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +avW +abk +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +aQv +aag +aag +aag +aag +aag +aag +aag +aag +acT +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aIS +aTq +aMr +xsx +abc +myP +awc +aAj +awc +awc +aAS +abc +aFq +aSY +aTq +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aNk +aNk +aNk +aSq +aSq +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(115,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +aQv +aOe +aOe +aOe +aOe +aiv +aiv +aiv +aiv +acT +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aiv +aSY +aTq +aMr +xsx +abK +sqE +avK +aFP +aHh +aHh +aFK +abK +aFq +aSY +aTq +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aNk +aNk +aNk +aNk +aNk +aNk +acd +acd +aNk +aNk +aNk +acd +acd +aNk +aNk +aNk +aNk +acd +acd +aNk +aNk +aNk +aNk +aNk +aNk +ato +ato +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(116,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +abk +avW +aQv +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +acT +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aEi +aSY +aTq +aMr +xsx +abK +bNF +aWh +amU +aWh +aWh +anb +abK +aFq +aSY +aTq +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aNk +aNk +aNk +aSq +aSq +aSq +aSq +aSq +aSq +aRT +acd +aSq +aSq +aSq +acd +aRT +aSq +aSq +aSq +aSq +acd +acd +aSq +aSq +aSq +aSq +aSq +asf +avV +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(117,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +abk +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +aQv +aBg +aVZ +aVZ +aVZ +ark +aEU +aEU +aEU +ayV +akv +akv +akv +aml +aPQ +akv +akv +aml +akv +akv +aml +aPQ +aPQ +aPQ +aPQ +aPQ +aPQ +aET +aSY +aTq +aMr +xsx +abK +vBJ +aDI +amU +aWh +aWh +anb +abK +aFq +aSY +aTq +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aSq +aSq +aSq +aSq +aSq +aSq +aSq +aSq +aRT +acd +aSq +aSq +aSq +acd +acd +aSq +aSq +aSq +aSq +acd +aRT +aSq +aSq +aSq +aSq +aSq +asf +afn +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(118,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aEh +aEh +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +avW +axY +aZT +aag +aag +aag +aag +aag +aag +aag +aag +acT +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aSY +aTq +aMr +xsx +abK +qcu +aOJ +ail +aNl +aVa +ath +abK +aFq +aSY +aTq +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aia +aia +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +aia +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(119,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +aEh +adA +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +arD +adA +awV +aSl +aSl +auG +auG +auG +auG +auG +auG +acT +auG +auG +auG +auG +auG +aew +aew +aew +aew +aew +aew +aew +aew +aew +aew +aew +aew +aew +aDh +aTq +aMr +xsx +abc +aJV +awc +aAj +awc +awc +aAS +abc +aFq +aSY +aTq +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aia +ade +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +ade +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(120,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +adA +aJv +aJv +ayO +aDM +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aDM +ayO +aJv +aJv +adA +awV +awV +awV +awV +avW +avW +avW +avW +avW +acT +avW +avW +avW +avW +avW +avW +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aTq +aMr +xsx +abK +uXV +aHh +apc +aSr +aHh +aFK +abK +aFq +aSY +aTq +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +avV +aCn +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(121,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +awV +awV +awV +adA +aJv +aJv +awP +aFz +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +awr +agl +aaW +aha +adA +awV +awV +awV +awV +awV +avW +avW +avW +avW +acT +asZ +avW +avW +awV +awV +abk +avW +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aTq +aMr +xsx +abK +iaF +aWh +amU +aWh +aWh +anb +abK +aFq +aSY +aTq +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(122,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +adA +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aNQ +adA +adA +adA +adA +adA +adA +adA +avW +awV +awV +aPI +awV +awV +awV +awV +awV +awV +avW +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aTq +aMr +xsx +abK +iaF +aWh +amU +aWh +aWh +anb +abK +aFq +aSY +aTq +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(123,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +adA +aVO +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aIM +aNP +aNP +aIM +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +agM +adA +aOB +aQI +atO +aOB +aOB +adA +awV +awV +awT +ate +awT +awV +awV +awV +awV +awV +avt +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aTq +aMr +xsx +abK +dtU +aVa +awX +aVa +aVa +ath +abK +aFq +aSY +aTq +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +ait +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(124,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +adA +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aIM +aIM +aEP +aaG +aIM +aIM +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aNQ +adA +aQI +aQI +aQI +aQI +aOB +adA +awV +awV +awT +aFc +awT +awV +awV +awV +awV +awV +abU +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +abc +snu +aUx +snu +aan +abc +qYN +aIo +aSt +aIo +aIo +ata +abc +acN +aIy +aUx +aIy +abc +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +avV +axA +aNk +aNk +aNk +aNk +aNk +aNk +aNk +aNk +aNk +aNk +aNk +aNf +aNf +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(125,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +adA +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aiN +aHJ +aqZ +aqZ +aXL +axL +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aNQ +aFg +aOB +aQI +aTI +aTI +aTI +awT +awT +aXv +aZC +amV +awT +awT +awT +awT +awV +awV +abU +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +snu +sYJ +dYK +doo +bro +abc +fYq +aHh +aJB +agz +agz +aIR +abc +afU +aTx +axa +aoJ +aIy +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aia +agp +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aZl +aia +avV +asX +aSq +aSq +aSq +aSq +aSq +aSq +aSq +aSq +aSq +aSq +asf +avV +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(126,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +adA +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aiN +aGb +aEI +ajo +ajE +axL +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aNQ +adA +aQI +aOB +aTI +atv +aNW +aqH +awT +aMO +aun +aiu +aeu +aee +aGB +awT +awV +awV +abU +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +snu +sYJ +vGS +ves +fbx +aKK +joa +aCm +aln +aCm +aCm +aOh +aKK +aEE +aRy +acx +aoJ +aIy +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +avV +asX +aSq +aSq +aSq +aSq +aSq +aSq +aSq +aSq +aSq +aSq +asf +avV +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(127,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +adA +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aIM +aYb +aYb +avk +aYb +aIM +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aNQ +adA +aZF +aQI +ara +aLe +aLe +aLe +aTd +aci +apG +aUq +acJ +aLe +acW +awT +awT +awT +aLE +awV +akw +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +snu +sYJ +sYJ +mMx +mMZ +abc +iba +aWh +amU +aWh +aWh +aRD +abc +aDw +akX +aoJ +aoJ +aIy +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aNk +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aia +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +aia +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(128,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +adA +aVO +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aIM +aoV +aZP +aGb +afJ +aIM +aJv +aJv +aJv +aJv +aJv +aJv +aJv +agM +adA +aOB +aQI +aTI +aEy +aKA +ayW +awT +aPl +aQX +aBn +akK +aGu +aGu +aGu +aYh +awT +abU +awV +aEh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +snu +sYJ +sYJ +sYJ +tQG +abc +dtU +aVa +awX +aVa +aVa +ath +abc +aIy +aIy +aIy +aIy +abc +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aNk +aNk +aNk +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aLX +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +ade +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(129,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +adA +aJv +aJv +aJv +aIM +anm +anm +aIM +aJv +aIM +aYb +aYb +anw +avG +aIM +aJv +aIM +aNJ +aNJ +aIM +aJv +aJv +aNQ +adA +anq +anq +anq +anq +anq +anq +awT +aCK +aJX +aBt +aOC +aOC +aOC +aOC +ajn +awT +abU +awV +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +abc +fdo +sYJ +sYJ +sYJ +snu +tRl +awc +aAj +awc +awc +aFI +abc +aRT +aRT +aRT +acd +acd +acd +aDh +aDh +aia +aia +ajD +ajD +ajD +ajD +ajD +aia +aia +aqd +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(130,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +awV +adA +aJv +aJv +anv +aIM +aVQ +aKQ +aIM +aJv +aIM +agi +aYb +amb +aRa +aIM +aJv +aIM +auA +aUZ +aIM +anv +aJv +aNQ +adA +gSV +sdD +xeQ +rLW +drw +atu +aTI +aci +aeK +aqR +ayq +aYs +aYs +aYs +aDY +awT +abU +awV +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +abc +sDd +sYJ +sYJ +sYJ +snu +bfK +aHh +aFP +aHh +aHh +aFK +abc +aRT +aRT +acd +acd +acd +acd +aDh +aDh +aia +aLX +akf +akf +akf +akf +akf +ade +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(131,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +awV +adA +aJv +aJv +anv +ahu +aCW +avb +aIM +aJv +aIM +ayH +ahg +ant +aDe +aIM +aJv +aIM +aLK +aah +abB +anv +aJv +aNQ +adA +iRd +hlP +oMm +hQo +qjE +atu +aTI +aMY +aBh +aki +aki +aki +aRP +aRP +aRP +aRP +abZ +aRP +aRP +aRP +aDh +aDh +aDh +aDh +aDh +aDh +aDh +tSe +sDd +sYJ +sYJ +sYJ +snu +bNF +aWh +amU +aWh +aWh +aRD +abc +aRT +aRT +acd +acd +acd +acd +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aqd +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(132,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +awV +adA +aJv +aJv +anv +aFd +aCW +aDG +aIM +aVd +aIM +aUt +aYb +aSa +aGd +aIM +aek +aIM +aqb +aUZ +aeS +anv +aJv +aNQ +adA +lxS +dvS +ifH +pgp +uZI +atu +aZS +aIX +adV +aki +auJ +alv +aRP +aon +aoB +aRP +alD +amM +aXt +aRP +aEh +aDh +aDh +aDh +aDh +aDh +aDh +tSe +sDd +fdo +sYJ +sYJ +snu +lkX +aVa +awX +aVa +aVa +ath +abc +aRT +aRT +aRT +acd +acd +acd +aDh +aDh +aia +aqd +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(133,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +awV +adA +aVO +aJv +anv +aIM +aDA +aIM +aIM +aIM +aIM +aYb +avz +ajC +aBK +aYb +adQ +aIM +aIM +acP +aIM +anv +aJv +agM +adA +xgi +irm +vob +ygJ +qAU +atu +aZV +aIX +aSe +aki +ayc +aZh +aRP +aoO +cJm +aRP +ahZ +aex +afc +aly +aEh +aEh +aEh +aDh +aDh +aDh +aDh +abc +sDd +fdo +fdo +sYJ +snu +tRl +awc +aAj +awc +awc +aFI +abc +aRT +aRT +aRT +aRT +aRT +acd +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +aZl +aia +agp +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aZl +aia +agp +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aZl +aia +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(134,1,1) = {" +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +awV +awV +awV +awV +awV +adA +aJv +aJv +anv +acg +aCW +ahB +afw +aIM +aIM +aIM +aIM +aHX +aaZ +aIM +aZa +aFl +aUZ +aUZ +ajJ +anv +aJv +aNQ +adA +jUC +brm +gQq +sYN +psX +atu +atu +aIX +adV +aki +ado +alW +aRP +aBM +aBo +aRP +aOF +aex +aHB +aly +akw +awV +awV +awV +aEh +aDh +aDa +aDa +aDa +aDa +aBS +aBS +aDa +aBS +aDa +aXo +adg +aDa +aBS +aDa +aBS +aBS +aDa +avO +avO +aDa +avO +avO +aia +agp +akf +akf +akf +akf +akf +akf +aYn +akf +akf +aFj +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +apI +akf +akf +aIF +aYn +akf +akf +akf +akf +akf +aqX +akf +akf +akf +akf +akf +akf +akf +aYn +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(135,1,1) = {" +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +awV +awV +awV +awV +awV +adA +aJv +aJv +anv +alf +aCW +aCW +arR +aIM +aTK +aeL +amI +aim +aFv +aEa +aZa +aoS +aUZ +aUZ +ajh +anv +aJv +aNQ +adA +aTF +aYQ +aOR +aYQ +aYQ +rYV +atu +aIX +aSe +aYy +aEj +auy +aok +aDl +uxR +aRP +aTk +aex +aex +aRP +awV +awV +awV +awV +awV +awV +aDa +fqE +wEN +wKT +rRE +lfu +hyI +keP +aKh +aau +aBe +aSX +aVT +aJR +apD +aEJ +aHY +aps +aPc +als +aHY +aEG +aYn +akf +akf +arh +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +agP +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(136,1,1) = {" +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +awV +awV +awV +awV +awV +awV +adA +aJv +aJv +acQ +aHf +akV +aEe +aod +aWe +aNO +aHU +ajR +aCt +aFv +aNO +aaM +aUH +aKO +aIN +aXz +awE +aJv +aNQ +adA +wqT +qNm +bmt +fUz +fVZ +aCb +ayg +aIX +aON +aIt +axE +aWZ +awS +wPd +avn +aRP +avC +atz +aoo +aRP +awV +awV +awV +awV +awV +awV +aDa +qMT +aAp +aAp +uKT +aAp +aAp +keP +aqz +aau +aBe +abX +aXK +aGQ +amm +alu +aHS +ajO +arJ +aPU +aHS +akI +aYn +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +agP +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(137,1,1) = {" +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +awV +awV +awV +awV +awV +awV +adA +aJv +aJv +acQ +ayb +aBA +aeR +aGT +aoX +azQ +aXE +apZ +aux +aov +azQ +aQx +aKY +akl +aPT +aIu +awE +aJv +aNQ +adA +eJr +jkL +bmt +ujp +gCP +aCb +ayg +aIX +adV +aki +aaS +aKX +awS +aNX +aIB +aBX +awo +aFa +ahT +aDa +aDa +aDa +aDa +aDa +aDa +aDa +aDa +tus +aAp +qPq +aAp +rzb +aAp +keP +aqz +aau +aBe +aqv +aOs +aMI +aYq +aPu +aQu +aQu +arg +aQu +aQu +aZL +aYn +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +agP +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(138,1,1) = {" +aDh +aDh +aDh +aDh +aDh +acd +aDh +wSZ +wSZ +wSZ +bqy +bqy +bqy +bqy +aDh +aDh +awV +awV +awV +awV +awV +awV +adA +aVO +aJv +acQ +aFo +aPo +aXV +ayQ +aIM +aLJ +aCt +aUC +abM +awZ +aMe +aIM +ayf +aHK +amK +ada +awE +aJv +agM +adA +aYQ +aYQ +aOR +aYQ +aYQ +uqH +atu +aIX +aSe +aki +alA +aaS +aaS +aaS +aki +ayC +ayC +avy +ayC +aDa +dzE +igQ +atW +kFh +sxW +aDa +aDa +opf +aAp +gPg +rRx +hlr +sSO +mOl +aaE +aKD +aWx +auM +aUR +axv +aBQ +aZn +aBe +aBe +aBe +aBe +aBe +aBe +aia +agp +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +agP +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(139,1,1) = {" +aDh +aDh +aDh +aDh +aDh +acd +wSZ +wSZ +btq +umb +mLx +wqg +jbA +bqy +bqy +aDh +aDh +awV +awV +awV +awV +awV +adA +aJv +aJv +aIM +aIM +aIM +aIM +aIM +aIM +aHT +aCt +aMK +axd +awZ +aNO +aIM +aIM +aIM +aIM +aIM +aIM +aJv +aNQ +adA +rMO +aYQ +aOR +aYQ +ahb +lje +atu +aIX +aRE +aki +aGA +aae +aRg +aXA +ayC +ayo +aej +apn +aXT +aDa +mob +dSv +atW +wCX +bfo +atW +nwb +aDa +lMf +mmr +mmr +mmr +mmr +keP +aqz +aau +aBe +aqv +aOs +aMI +aYq +aEJ +aHY +apY +afy +afy +aHY +aEG +aYn +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +agP +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +avV +aCn +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(140,1,1) = {" +aDh +aDh +aDh +aDh +aDh +acd +wSZ +xuJ +xvE +fES +mLx +rai +luK +eDY +dBY +aDh +aDh +awV +asP +asP +asP +asP +adA +aJv +aJv +aJv +aIM +aIM +aab +awD +ahN +aFy +aCt +awb +aNR +awZ +azY +ady +aFR +aBu +aIM +aIM +aJv +aJv +aNQ +adA +irz +aYQ +aOR +aYQ +acR +aYQ +ayg +aIX +adV +aki +ake +aPB +aGY +acG +ayC +aRs +aig +aeX +aub +aDa +aDa +tZR +atW +fcB +atW +atW +wAE +aDa +dhS +jWg +jWg +jWg +jWg +cKH +alV +aau +aBe +abX +aXK +aGQ +amm +alu +aHS +arJ +aoh +arJ +aHS +akI +aYn +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +agP +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +avV +aTy +aNf +aNf +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(141,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +wSZ +dFp +jPy +nhC +dze +pfn +veG +tBc +dBY +aDh +aDh +awV +asP +aQp +aMx +aMx +adA +aJv +aJv +aJv +aJv +acQ +abo +aXW +aWF +aNO +aCt +aPD +anC +awZ +aNO +aQN +aSC +adN +awE +aJv +aJv +aJv +aNQ +adA +ugc +aYQ +evZ +cLs +tEX +fEe +fgr +aTh +aSK +aki +aki +aki +ayC +ayC +ayC +aHt +aig +aeX +atF +aDa +xHj +gEX +dEf +mtD +brD +ian +xOL +tjw +lbQ +hgn +gBQ +hgn +gBQ +hgn +auh +aHH +aBe +aqv +aOs +aMI +aYq +aPu +aQu +ajm +afj +ajm +aQu +aZL +aYn +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +agh +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +agP +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +avV +avV +avV +avV +aDU +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(142,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +bqy +bqy +mLx +rYx +mLx +utC +mLx +jpc +wSZ +aDh +aDh +awV +asP +aMx +aMx +aQp +adA +aVO +aJv +aJv +aJv +acQ +abo +asN +aeq +aNO +aCt +all +aBR +awZ +aNO +aPS +aao +aTJ +awE +aJv +aJv +aJv +agM +adA +dIL +vgG +muU +aDt +qlY +aYQ +kAw +aIX +adV +atu +ahD +agy +ayC +aAQ +aYk +aHt +ank +aHz +avH +aDa +aDa +atW +atW +atW +ceR +atW +atW +aDa +xij +etQ +lKd +bSu +maN +tBP +aYq +aXw +axf +aSj +aKo +aQa +aos +aAH +aBe +aBe +aBe +aBe +aBe +aBe +aia +agp +akf +akf +akf +akf +akf +aZl +aia +agp +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +ahi +aia +agp +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aZl +aia +avV +aKq +afn +avV +aDU +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(143,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +ygc +brN +bEV +bCt +wux +huS +ygc +aDh +aDh +awV +awV +asP +aMu +aQp +aQp +adA +aJv +aJv +aJv +aJv +acQ +abo +aZY +aaP +aNO +aCt +amD +aJN +awZ +aNO +ayh +axG +alz +awE +aJv +aJv +aJv +aJI +adA +lRy +hhS +aVG +fUz +mCV +fSy +ayg +arm +agR +ayg +aMD +aPs +ayC +aYD +abt +aaO +anK +aPy +aAo +atu +plo +nHu +qYk +tuT +djG +ily +pHc +anq +anq +anq +ycq +fZW +lhm +yfW +aRO +ast +aBe +aqv +aOs +aMI +aYq +aEJ +aHY +aHY +ahH +aHY +aHY +aEG +abS +akf +akf +akf +atM +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +agP +aia +akf +akf +akf +akf +akf +akf +aER +akf +akf +akf +akf +akf +akf +aia +alJ +aia +aia +avV +asX +aNk +aDh +aDh +aYj +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(144,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +ygc +brN +iPk +uFC +oBT +fhh +ygc +aDh +aDh +awV +awV +asP +aMx +aQp +aMx +adA +aJv +aJv +aJv +aIM +aIM +aFr +auS +aYc +aUu +aCt +aTU +afo +awZ +aNO +afh +aIf +aHQ +aIM +aIM +aJv +aJv +aQS +adA +hZT +woZ +ijf +fUz +jkL +bXG +atu +akp +aqA +ayg +aZx +alQ +ayC +aWy +ajw +aHt +ayZ +aoa +aKc +atu +oYQ +eew +aLr +qSt +fPv +cRa +aLr +vns +anq +anq +tNP +xKe +aal +qLg +aHg +agI +aBe +abX +ahS +aGQ +amm +alu +aHS +ajO +arJ +aPU +aHS +akI +aYn +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +agP +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aNi +aVA +aYn +avV +asX +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(145,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +ygc +brN +mcB +whD +joQ +fhh +ygc +aDh +aDh +awV +awV +asP +aMx +aMx +aQp +adA +aJv +aJv +aIM +aIM +aIM +aaA +aaA +aaA +aIM +aAx +aNC +aNC +aBG +aIM +aaA +aaA +aaA +aIM +aIM +aIM +aJv +aFS +adA +atu +rJb +omb +atu +atu +atu +atu +aIX +adV +ayg +avp +aAh +ayC +aOP +aLo +aCr +aiX +aBV +aNm +atu +rfq +swc +eFD +eFD +dXK +eFD +cRa +juq +vPp +anq +vDS +pcx +gia +xoQ +aeG +aau +aBe +azH +aGG +acl +aoW +aPu +aQl +axl +aJp +aeT +aQu +aZL +aYn +ahC +anc +aur +akf +aDV +aLn +akf +aia +akf +akf +akf +akf +aEf +aur +akf +akf +aur +aqx +anp +akf +akf +aur +aur +aSV +anp +akf +akf +aur +aEf +akf +akf +akf +agP +aia +akf +akf +akf +akf +amj +ayD +anp +aur +aPZ +akf +akf +akf +akf +aia +aNt +aVB +aYn +avV +aDU +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(146,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +wlu +tHv +lmT +hIZ +lmT +lmT +yfg +kJj +iRS +aDh +awV +asP +asP +adW +asP +asP +adA +aVO +aGW +aIM +aIM +abI +aDg +axK +axK +aIM +aiE +azE +azE +aUQ +aIM +age +aOw +auD +anf +aIM +aIM +aGW +aFS +adA +aJk +aIX +aIX +agv +atu +atu +atu +aqy +aPq +atu +aEz +atu +ayC +ayC +ayC +ayC +ayC +aqV +ayC +atu +wXR +nsW +swc +pCo +cTP +ksK +clq +cRa +wEf +anq +aBS +aBS +aDa +aBS +aDa +aWw +aLx +aDa +aBS +aDa +aBS +aBS +aDa +aDa +aDa +aDa +avx +avx +aDa +aia +aia +aAI +akf +aTw +aBJ +aia +aia +aYn +aYn +aia +aYn +aCx +aAI +akf +akf +aur +aia +anO +akf +akf +aur +aur +aia +anO +akf +akf +abO +aCx +aYn +aia +aYn +aaT +aia +aYn +aYn +aYn +aYn +aia +azr +aFu +abO +aia +aYn +aYn +aYn +aYn +aia +aNE +aia +aia +aia +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(147,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +pPt +pPt +hVq +olr +rnU +rQl +cZd +gsa +gsa +asP +asP +asP +aKZ +aYv +aYv +aYv +amZ +aJv +aox +agb +aeH +aep +awg +aAw +aAw +aYV +aux +aow +atY +alo +ach +ams +aiR +aOi +aao +aqi +gGo +aox +aqB +aGD +aTh +ali +aXn +aTh +aaJ +aTh +ali +aXn +asD +axp +aoj +aeQ +aEb +aji +aio +aDC +aEt +aUv +aEt +itB +lkx +viA +ksu +xti +lBP +xti +kVa +biq +nOQ +eXQ +nOQ +fkY +gYF +cXu +awf +aQM +apy +ahx +asy +aJl +arW +ayn +aTG +art +ayz +aXH +alK +alK +asM +aRm +asL +aRm +aRm +ale +ajy +aRm +abV +aRm +aRm +aRm +aRm +asL +aRm +adn +adn +aRm +ave +ale +adn +adn +aRm +aRm +aeV +ale +adn +adn +aRm +aro +aRm +aRm +aRm +aFN +awB +aRm +aRm +aRm +aRm +aRm +aCI +aGS +aJn +aKJ +aVt +aVt +aVt +aVt +aVt +aNG +aVt +aYu +aia +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(148,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +tHv +bqF +buw +bJN +lmT +lmT +hHX +csb +xAd +llR +hQE +qgF +wvG +wvG +orT +aYv +amZ +aJv +aPW +aFM +aEq +aRf +awR +aiK +ack +agr +aCd +acV +ari +aYK +agr +aOV +ari +aic +aZe +aol +azP +arl +aRX +aUf +aIX +aou +adq +aIX +axN +aIX +abP +ais +aDD +aPn +aIX +aIX +atR +azn +amR +aya +atR +aIX +aIX +aPn +sJD +rLO +fFF +eFD +cbA +eFD +ehf +cRa +juq +ubm +aLr +aPV +aLr +alF +atc +aat +aTO +aKV +aPV +aRw +alF +aLr +ajZ +akj +aKV +aXf +aVz +aVz +apF +aur +awQ +aur +aur +aen +aHr +aur +amE +aur +aur +aur +aur +awQ +aur +aur +aur +aur +aRK +aen +aur +aur +aur +aur +aAe +aen +aur +aur +aur +aHr +aur +aur +aur +aur +axm +aur +aur +aur +aur +aur +awQ +aen +aur +aHr +aur +aur +aur +aur +aur +aOc +aur +aZb +aia +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(149,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +tHv +uWr +mdQ +tjk +bcm +eRa +dXU +ser +ygR +wny +nYk +pgl +ygM +qRm +pcN +kPA +aqj +aJv +aIM +aIM +aIM +akq +aim +arw +ary +aIM +aaH +amp +aeW +afV +aGW +aCh +aEM +atH +aLG +aIM +aIM +aIM +aNQ +aqj +aSO +aFY +aIX +agv +atu +atu +atu +aQw +aav +atu +atu +atu +arG +arG +agd +arG +arG +arG +arG +atu +hQL +swc +swc +eFD +cXp +xoh +wBj +aLr +iAn +anq +aXZ +aXZ +aXZ +aXZ +anq +azs +aHC +anq +aCM +anq +aCM +anq +anq +aZq +anq +aVr +aXZ +agH +acL +aia +aia +aAI +akf +axB +aXi +aia +aia +aYn +aYn +aia +aYn +aJt +aAI +akf +akf +aur +aia +aqf +akf +akf +aur +aur +aia +aqf +akf +akf +abO +aJt +aYn +aia +aYn +aYn +aia +aYn +aYn +aYn +aYn +aia +aeJ +aJg +abO +aia +aYn +aYn +aYn +aYn +aia +aRZ +aia +aia +aia +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(150,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +tHv +hPk +mBj +sCj +hTV +lmT +svz +gXc +kJj +asP +asP +vGv +asS +sOj +bud +lRD +adA +aJv +aJv +aIM +aIM +aIM +agj +aIM +aIM +aIM +awh +aZX +aNC +alX +aIM +aIM +aIM +aTZ +aXy +aIM +aIM +aJv +aNQ +adA +atu +atu +atu +atu +atu +atu +aCl +aYQ +acE +atu +ajf +amu +arG +aHy +ahf +aQQ +aZK +aSg +aGi +glL +eCw +swc +hJt +eFD +wAp +pCo +wcE +xhh +pfJ +anq +aXZ +qhK +qhK +qhK +aCM +avs +anG +aCM +atb +atb +atb +anq +abQ +ahE +anq +aKr +aXZ +abG +aHV +aot +aTu +aur +akf +aZO +auI +akf +aia +akf +akf +akf +akf +aLX +aur +akf +akf +aur +aeF +aqU +akf +akf +aur +aur +aht +aqU +akf +akf +aur +aLX +akf +akf +akf +akf +aia +akf +akf +akf +akf +aFA +aEm +aqU +aur +aUa +akf +akf +akf +akf +aia +aTX +aWk +aZz +aia +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(151,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +tHv +lmT +dpO +cMr +nZt +rrC +ejy +trD +kJj +aDh +awV +asP +aAv +phr +asP +asP +adA +aJv +aJv +aJv +acQ +aui +aim +ajK +aIM +afS +alZ +aze +aXO +ryw +aFD +aIM +asR +aey +aoK +awE +aJv +aJv +aNQ +adA +aYO +anE +aKH +aAG +adr +atu +aEo +aYQ +aqw +apw +acn +aGs +arG +ahY +atI +aUP +aad +aLw +aCU +atu +tnk +fJI +cRa +wFr +lIN +aLr +bin +pyE +anq +anq +nui +dhG +dhG +hfD +aCM +aCV +asl +aCM +atb +acH +aFn +abe +aEn +acj +avZ +azm +aVr +agH +acL +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aTg +aBH +aWX +aia +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(152,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +qKZ +vnT +wWV +rqL +lsj +lsj +dPi +qXs +ski +aDh +awV +asP +aYv +eHq +asP +aRz +adA +aVO +aJv +aJv +acQ +aMh +aFO +aPv +aIM +afS +aMq +aNK +aHn +aJO +aFD +aIM +auP +aII +aQU +awE +aJv +aJv +agM +adA +aYO +aLy +afr +ako +anD +atu +aWd +aYQ +acE +atu +aDs +alG +arG +auQ +ahf +aVN +aSB +aAX +aWi +atu +rch +eew +aRw +bAO +vff +vrM +coR +anq +anq +anq +anq +anq +anq +anq +anq +afl +aJd +anq +aFn +alY +aKS +anq +anq +anq +anq +aXZ +aXZ +aDW +aHV +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aTr +aWU +aKb +aia +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(153,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +qKZ +cfW +nAQ +oOF +lEv +lEv +osL +xbJ +uOf +aDh +awV +asP +aYv +tZo +asP +aRz +adA +aJv +aJv +anv +aIM +aBl +ayv +alH +aIM +aIM +ahs +ahl +aYx +aBP +aIM +aIM +ajX +ajs +aWT +aIM +anv +aJv +aNQ +adA +aiP +aOI +akH +aEu +ayL +atu +aCz +aYQ +acE +atu +aBT +aGs +arG +azM +ahf +aiO +aFm +ape +aRq +atu +anq +anq +anq +anq +jRs +anq +anq +anq +acH +atb +lcf +aAE +aWr +aWr +asq +aWr +aWr +aWr +aKS +atb +atb +aiC +atb +atb +aia +aWI +aVe +agH +acL +akf +akf +akf +akf +akf +akf +aZl +aia +agp +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akk +akf +akf +akf +akf +akf +akf +akf +aZl +aia +agp +akf +akf +akf +akf +akf +aJw +akf +akf +akf +akf +akf +aZl +aia +aia +aia +aia +aia +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(154,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +gkq +hKI +mzq +uuY +ezf +mac +osM +eNq +gkq +aDh +awV +asP +aYv +eHq +asP +aRz +adA +aJv +anv +aIM +abJ +aNO +aNO +aNO +aMd +apE +alN +aBy +aBy +alN +abb +aGv +aKs +att +aIC +aSR +aIM +anv +aNQ +anq +atu +atu +aZd +atu +atu +atu +anh +aYQ +acE +atu +aNM +avj +arG +alP +aco +aDL +aeD +aeD +aeD +anq +anq +qUG +hUy +nFe +puK +tjz +coN +anq +atb +aFn +aKS +aZA +axt +axt +axt +axt +axt +axt +axt +axt +axt +agC +aDh +aDh +akd +agG +ajt +azO +aHV +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +aSq +aSq +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(155,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +qhX +mNP +nQY +mNP +mNP +mNP +mNP +qRE +qhX +aDh +awV +asP +aYv +eHq +asP +aRz +adA +aJv +anv +aIM +aoR +azG +apC +aqt +aIP +aev +aBL +aBL +aBL +aBL +aZW +aeP +aCe +aVX +aPz +aQY +aIM +anv +aNQ +anq +adw +abg +aiZ +aUG +aTl +atu +aBs +aYQ +aYl +atu +atu +atu +arG +aRB +aBi +abq +aeD +axu +aDd +tVG +iQo +asl +aDW +qPf +aDW +tjz +dAr +anq +atb +aZp +atb +aiC +atb +atb +atb +atb +atb +atb +atb +atb +aDh +aDh +aDh +aDh +aDh +aDh +aTe +agH +acL +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +aSq +aSq +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(156,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +qhX +ulf +qXy +nlS +eeA +wKr +uRl +kJI +qhX +aDh +awV +asP +aKZ +eHq +asP +aRz +adA +aJv +anv +apE +alN +alN +alN +aAB +aAB +agf +aIz +aIz +aIz +aIz +axy +aAB +aAB +alN +alN +alN +abb +anv +aNQ +anq +atu +ajc +azv +aSL +aMa +atu +aQT +aYQ +acE +atu +awA +aUn +arG +azK +aBi +aGJ +aeD +aPH +apT +jhB +tjz +lGw +coN +coN +mXW +jLb +dqN +anq +atb +aZp +atb +afi +atb +atb +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aTe +abG +aHV +akf +akf +avq +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +aSq +aSq +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(157,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +qhX +kII +wQu +icD +rDb +nXQ +nXQ +isg +qhX +aDh +awV +asP +aYv +bcs +asP +asP +adA +aVO +anv +aBL +aBL +aBL +aBL +aIM +aIM +aJv +aJv +aJv +aJv +aJv +aJv +aIM +aIM +aBL +aBL +aBL +aBL +anv +agM +anq +adw +abg +arq +aDu +azu +atu +anI +aYQ +acE +atu +aeA +aNr +arG +agx +aQe +afK +acS +aRW +aqk +puI +epB +lKU +anq +anq +anq +anq +anq +anq +atb +aZp +acH +aiC +acd +acd +acd +aSu +acd +acd +acd +aSu +acd +acd +acd +acd +acd +acd +aTe +aDW +acL +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(158,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +qhX +rVS +ngy +cAq +czU +czU +ngy +tjO +qhX +aDh +awV +asP +aYv +xoJ +adD +asP +adA +aJv +anv +aIz +aIz +aIz +aIz +aIM +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aJv +aIM +aIz +aIz +aIz +aIz +anv +aNQ +anq +atu +atu +acA +atu +atu +atu +aQA +aYQ +aqw +awa +ago +awH +arG +arG +aeD +aeD +aeD +aeD +aeD +aeD +aeD +aeD +aeD +aAD +aAD +aAD +aAD +aAD +atb +aZp +aCp +awV +acd +acd +apm +aAf +axM +acz +acz +abL +apm +acd +acd +acd +acd +acd +aib +azO +axj +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(159,1,1) = {" +aDh +aDh +aDh +aDh +aDh +acd +aDh +wqt +wqt +aDh +aDh +aDh +oAt +oAt +aDh +aDh +awV +asP +ald +twz +anP +asP +adA +aJv +aJv +aYB +aEF +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aBj +adl +aaW +aUd +anq +aHs +ayI +ahU +aPa +aJf +ayg +aGC +aYQ +acE +atu +acm +aga +aIU +aca +anq +aAD +aXJ +asr +acX +asr +acX +asr +acX +asr +acX +asr +acX +amg +alY +aOM +aCp +awV +acd +acd +apm +azU +axc +ahp +aWQ +aOE +apm +anq +anq +anq +aCM +anq +aib +agH +acL +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(160,1,1) = {" +aDh +aDh +aDh +aDh +aDh +acd +aDh +wAb +wAb +aDh +aDh +aDh +wAb +wAb +aDh +aDh +awV +asP +aYv +pWh +aLk +asP +adA +aJv +aJv +avi +arQ +aWl +aJv +aJv +aJv +aJv +aWl +aJv +aJv +aWl +aJv +aJv +aJv +aJv +aWl +arQ +avi +aJv +aJv +anq +ayK +aVG +aCB +atk +aCb +ayg +aDr +aYQ +acE +atu +ava +anV +aIQ +alj +anq +aAD +aIb +aAD +aIb +aAD +aIb +aAD +aIb +aAD +aIb +aAD +aIb +aAD +aCp +aCp +aCp +awV +acd +acd +apm +alx +aqI +axi +aHE +aud +aFx +aND +asH +avd +aeY +aFV +asl +abG +axj +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +awC +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(161,1,1) = {" +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +awV +asP +asP +avU +awn +asP +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +adA +anq +aQf +aYH +aXI +ahb +ahr +atu +aTF +aYQ +acE +atu +atu +atu +atu +atu +anq +arf +auB +arf +auB +arf +auB +arf +auB +arf +auB +arf +auB +aAD +aCp +awV +awV +awV +acd +acd +apm +aec +ahv +aRd +aqT +aKN +aVo +aru +aKW +ajA +agN +ahw +agN +agN +aZN +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(162,1,1) = {" +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +awV +awV +asP +aLA +azi +ahJ +aDv +aYv +aCE +aBB +aSF +aYv +aUV +aYv +aCE +aYv +awN +aYv +aYv +aMl +aYv +aCE +aYv +awN +aYv +aYv +aUV +aYv +aBB +akG +aYQ +aYQ +aOR +acR +aYQ +aNo +aYQ +aYQ +aUD +aYQ +aYQ +aIw +aYQ +abH +anq +arf +auB +arf +auB +arf +auB +arf +auB +arf +auB +arf +auB +aAD +aCp +awV +awV +aDh +acd +apm +apm +aOd +akR +aNx +acD +aCu +apm +anq +anq +agq +aCM +anq +agH +abG +anq +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aYn +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(163,1,1) = {" +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +awV +awV +asP +afm +arY +ahV +aXD +aXM +afa +adv +aea +aGo +aCL +atl +ajG +aLL +adS +atU +avm +aUb +atl +aVc +auz +aVk +aqJ +avm +aUb +aGN +aZg +axF +aFQ +aZG +aYP +aMj +aeI +aqC +aeI +aPt +atn +aNd +aNd +aNd +aZU +acy +anq +arf +auB +arf +auB +arf +auB +arf +auB +arf +auB +arf +auB +aAD +aCp +awV +aDh +aDh +aDh +apm +ahz +aSm +aww +aWD +axQ +aaq +apm +apm +acd +acd +acd +aCM +abG +aDW +anq +akf +akf +akf +arp +akf +akf +aZl +aia +agp +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aZl +aia +agp +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aZl +aia +aNk +aNk +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(164,1,1) = {" +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +awV +awV +asP +asP +aNe +abi +asP +asP +asP +asP +aIE +avr +aIE +aKx +asP +asP +asP +aNb +amh +aNb +aTR +asP +asP +asP +akQ +aNa +acZ +aAT +asP +anq +atu +aRp +avY +atu +atu +atu +atu +awL +atu +atu +atu +atu +axe +atu +anq +arf +auB +arf +auB +arf +auB +arf +auB +arf +auB +arf +auB +aAD +aCp +awV +aDh +aDh +aDh +apm +aNx +aOd +aFZ +asm +aTc +aUF +aAC +aje +acd +acd +acd +aCM +aDW +aDW +anq +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aqd +akf +akf +akf +akf +akf +akf +aKf +akf +akf +akf +akf +akf +aia +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(165,1,1) = {" +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +awV +awV +asP +aKk +aNe +aof +aNe +arj +asP +aKz +aNe +alO +aNe +aqE +aWV +asP +aKz +aNe +alO +aNe +aqE +aAy +asP +aKz +aNe +alO +aNe +aqE +aWV +anq +aML +adp +aYQ +arO +atu +afE +aGk +aHq +aiq +aGO +afE +aRv +aHq +alg +anq +arf +aYm +arf +ash +arf +ase +arf +aYm +arf +ash +arf +aYm +aCp +aCp +awV +aDh +aDh +acd +apm +aRJ +aJZ +aVP +aHR +aLD +axI +aWE +aje +acd +acd +acd +aCM +adh +arF +anq +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(166,1,1) = {" +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +awV +awV +asP +ayS +aEH +ayp +aYz +aGr +asP +aNe +aaN +aNe +aaN +aNe +aaN +asP +aNe +aWG +aNe +azt +aNe +ajV +asP +aNe +aoE +aNe +aoC +aNe +aGF +ayi +apH +aWN +aTV +afd +aGO +ayT +aiD +aTC +aHP +atu +afF +aiD +aTC +aHP +anq +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aCp +aCp +aDh +aDh +aDh +acd +kqb +aaD +aoi +aQd +avB +aUK +azc +aef +aje +acd +acd +acd +aCM +aVj +aVj +anq +aLQ +akf +akf +akf +akf +akf +aNc +aia +akf +akf +aBv +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(167,1,1) = {" +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +awV +awV +asP +ahF +aqE +aNe +alO +aGr +asP +aNe +aaN +aNe +aaN +aNe +aaN +asP +aNe +agX +aNe +aKR +aNe +aOZ +asP +aNe +aoE +aNe +aoC +aNe +aGF +anq +akt +aeO +aDt +amP +atu +aoy +aDf +aYN +aXj +atu +aFC +aDf +aQJ +avl +anq +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +aEh +aDh +aDh +aDh +acd +apm +aWS +agY +aFX +ayR +aLT +arZ +aVf +aje +acd +acd +acd +anq +apt +axr +anq +aia +ajD +ajD +ajD +ajD +ajD +aia +aia +aqd +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aEf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aNc +aia +aNk +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(168,1,1) = {" +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +awV +awV +asP +aKE +aNe +aNe +aNe +aGr +asP +aNe +aaN +aNe +aaN +aNe +aaN +asP +aNe +aIJ +aNe +apM +aNe +aOZ +asP +aNe +aAL +aNe +aiM +aNe +aGF +anq +anq +anq +aCM +aCM +anq +anq +anq +anq +anq +anq +anq +anq +anq +anq +anq +awV +awV +awV +aEh +aEh +aEh +aEh +aEh +aEh +aEh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +kqb +aHm +aKL +aQd +aFB +ayY +ajN +aUw +aje +acd +acd +acd +aCD +aFh +aFh +aMA +acd +acd +acd +acd +aDh +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aia +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +aia +aia +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(169,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +asP +agu +aNe +aNe +ana +aDi +asP +aKz +aaN +aNe +aaN +ana +azq +asP +aKz +aMm +aNe +ask +ana +aSp +asP +aKz +aAL +aNe +aiM +ana +aQj +asP +awV +awV +aVF +aVF +aVF +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +aEh +aEh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +apm +apm +aiY +adZ +aZJ +aAu +ahh +azd +aje +acd +acd +acd +azj +aYr +aYr +aMA +acd +acd +acd +acd +aDh +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(170,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +asP +aZk +asP +asP +asP +asP +awV +awV +aDh +aDh +aDh +aDh +awV +awV +awV +aDh +aDh +awV +awV +awV +aEh +aEh +aEh +aEh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +aIa +aum +aVL +ajz +ajz +aje +aje +aje +acd +acd +acd +azj +ajl +ajl +aCD +acd +acd +acd +acd +aDh +aDh +aDh +aia +akf +akf +akf +akf +aMc +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(171,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +awV +aDh +aDh +aDh +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +asP +aMx +afZ +aUT +asP +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +aFi +auE +atQ +aBp +aFi +acd +akg +aBE +acd +acd +acd +aDP +ajl +ajl +aCD +acd +acd +acd +acd +aDh +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(172,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +awV +asP +aMu +aMx +aQp +asP +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +aFi +akm +akm +ame +aFi +acd +afu +acd +acd +acd +acd +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(173,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +avW +aQW +aMy +aES +axC +asP +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +aFi +aVq +aEA +aFi +aFi +acd +acd +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(174,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +avW +asP +asP +asP +asP +asP +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +aFi +aFi +aFi +aFi +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(175,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +awV +awV +awV +awV +awV +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aia +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aia +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(176,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aia +aEf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +akf +aNc +aia +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(177,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aia +aia +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +ajD +aia +aia +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(178,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(179,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +aDh +aDh +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(180,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(181,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +acd +acd +acd +acd +acd +acd +acd +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(182,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(183,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(184,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(185,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(186,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(187,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(188,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(189,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(190,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(191,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} +(192,1,1) = {" +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +aDh +"} diff --git a/maps/sectors/nebula_tradeport/nebula_tradeport-areas.dm b/maps/sectors/nebula_tradeport/nebula_tradeport-areas.dm new file mode 100644 index 000000000000..79f2e8bc8a60 --- /dev/null +++ b/maps/sectors/nebula_tradeport/nebula_tradeport-areas.dm @@ -0,0 +1,147 @@ +/area/sector/nebula_tradeport + name = "Away Mission - Trade Port" + icon = 'icons/turf/areas.dmi' + icon_state = "dark" + area_flags = AREA_RAD_SHIELDED + requires_power = 1 + ambience = AMBIENCE_GENERIC + +/area/sector/nebula_tradeport/facility + icon_state = "red" + +/area/sector/nebula_tradeport/engineering + icon_state = "yellow" + ambience = AMBIENCE_ENGINEERING + +/area/sector/nebula_tradeport/commons + icon_state = "green" + +/area/sector/nebula_tradeport/dock + icon_state = "blue" + ambience = AMBIENCE_HANGAR + sound_env = LARGE_ENCLOSED + +/area/sector/nebula_tradeport/dock2 + icon_state = "blue" + ambience = AMBIENCE_HANGAR + sound_env = LARGE_ENCLOSED + +/area/sector/nebula_tradeport/pads + icon_state = "purple" + ambience = AMBIENCE_HANGAR + sound_env = LARGE_ENCLOSED + +/area/sector/nebula_tradeport/spine + name = "\improper Commerce Spine" + icon_state = "red" + +/area/sector/nebula_tradeport/commhall + name = "\improper Commerce Hall" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel + name = "\improper Nebula Motel" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/room1 + name = "\improper Nebula Motel Room 1" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/room2 + name = "\improper Nebula Motel Room 2" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/room3 + name = "\improper Nebula Motel Room 3" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/room4 + name = "\improper Nebula Motel Room 4" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/room5 + name = "\improper Nebula Motel Room 5" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/room6 + name = "\improper Nebula Motel Room 6" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/room7 + name = "\improper Nebula Motel Room 7" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/room8 + name = "\improper Nebula Motel Room 8" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/vip + name = "\improper Nebula Motel VIP Suite" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/sauna + name = "\improper Motel Sauna" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/arcade + name = "\improper Nebula arcade" + icon_state = "yellow" + +/area/sector/nebula_tradeport/motel/empty + name = "\improper Nebula unused cargo hold" + icon_state = "yellow" + +/area/sector/nebula_tradeport/safari + name = "\improper Safari Shop" + icon_state = "green" + +/area/sector/nebula_tradeport/safarizoo + name = "\improper Safari Zone" + icon_state = "blue" + +/area/sector/nebula_tradeport/cyndi + name = "\improper C&K Floor" + icon_state = "purple" + +/area/sector/nebula_tradeport/cyndishow + name = "\improper C&K Showroom" + icon_state = "red" + +/area/sector/nebula_tradeport/medical + icon_state = "blue" + sound_env = SMALL_ENCLOSED + +/area/sector/nebula_tradeport/medical/public + icon_state = "blue" + sound_env = SMALL_ENCLOSED + +/area/sector/nebula_tradeport/security + icon_state = "blue" + sound_env = SMALL_ENCLOSED + +/area/sector/nebula_tradeport/comroom + name = "\improper Public Communication Room" + icon_state = "green" + +/area/sector/nebula_tradeport/comroom/holo1 + name = "\improper Public Communication Room Holopad booth 1" + icon_state = "green" + +/area/sector/nebula_tradeport/comroom/holo2 + name = "\improper Public Communication Room Holopad booth 2" + icon_state = "green" + +/area/sector/nebula_tradeport/comroom/holo3 + name = "\improper Public Communication Room Holopad booth 3" + icon_state = "green" + +/area/sector/nebula_tradeport/atmospherics + icon_state = "yellow" + ambience = AMBIENCE_ATMOS + +/area/sector/nebula_tradeport/exterior + +/area/sector/nebula_tradeport/cafeteria + icon_state = "green" + +/area/sector/nebula_tradeport/expansion diff --git a/maps/sectors/nebula_tradeport/nebula_tradeport-misc.dm b/maps/sectors/nebula_tradeport/nebula_tradeport-misc.dm new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/maps/sectors/nebula_tradeport/nebula_tradeport-shuttles.dm b/maps/sectors/nebula_tradeport/nebula_tradeport-shuttles.dm new file mode 100644 index 000000000000..2d883688a035 --- /dev/null +++ b/maps/sectors/nebula_tradeport/nebula_tradeport-shuttles.dm @@ -0,0 +1,317 @@ +/datum/shuttle/autodock/overmap/trade + name = "Beruang Trade Ship" + warmup_time = 0 + shuttle_area = list(/area/shuttle/trade_ship/cockpit, /area/shuttle/trade_ship/general) + current_location = "tradeport_hangar" + docking_controller_tag = "tradeport_hangar_docker" + fuel_consumption = 5 + move_time = 10 + +/obj/overmap/entity/visitable/ship/landable/trade + name = "Beruang Trade Ship" + desc = "You know our motto: 'We deliver!'" + color = "#754116" //Brown + fore_dir = WEST + vessel_mass = 4000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Beruang Trade Ship" + +/obj/machinery/computer/shuttle_control/explore/trade + name = "short jump console" + shuttle_tag = "Beruang Trade Ship" + +/area/shuttle/trade_ship + requires_power = 1 + icon_state = "shuttle2" + area_flags = AREA_RAD_SHIELDED + +/area/shuttle/trade_ship/general + name = "\improper Beruang Trade Shuttle" + +/area/shuttle/trade_ship/cockpit + name = "\improper Beruang Trade Shuttle Cockpit" + +//Udang Shuttle + +/datum/shuttle/autodock/overmap/trade/udang + name = "Udang Transport Shuttle" + warmup_time = 6 + shuttle_area = list(/area/shuttle/udang/cockpit, /area/shuttle/udang/main) + current_location = "tradeport_udang" + docking_controller_tag = "tradeport_udang_docker" + fuel_consumption = 4 + move_time = 10 + +/obj/overmap/entity/visitable/ship/landable/trade/udang + name = "Udang Transport Shuttle" + desc = "A shuttle linked to the Nebula Gas Station. Its a cargo ship refitted to carry passengers. It seems that civilian pilot may also pilot it." + color = "#a66d45" //Orange Brownish + fore_dir = EAST + vessel_mass = 10000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Udang Transport Shuttle" + +/obj/machinery/computer/shuttle_control/explore/trade/udang + name = "short jump console" + shuttle_tag = "Udang Transport Shuttle" + +/area/shuttle/udang + requires_power = 1 + icon_state = "shuttle2" + dynamic_lighting = DYNAMIC_LIGHTING_ENABLED + area_flags = AREA_RAD_SHIELDED | AREA_FLAG_ERODING + sound_env = SMALL_ENCLOSED + +/area/shuttle/udang/cockpit + name = "Udang Cockpit" + +/area/shuttle/udang/main + name = "Udang Main Section" + +//Scoophead trade Shuttle + +/datum/shuttle/autodock/overmap/trade/scoophead + name = "Scoophead trade Shuttle" + warmup_time = 5 + shuttle_area = list(/area/shuttle/scoophead, /area/shuttle/scoophead/cockpit, /area/shuttle/scoophead/main, /area/shuttle/scoophead/main2, /area/shuttle/scoophead/office, /area/shuttle/scoophead/engineering) + current_location = "tradeport_scoophead" + docking_controller_tag = "tradeport_scoophead_docker" + fuel_consumption = 4 + move_time = 10 + +/obj/overmap/entity/visitable/ship/landable/trade/scoophead + name = "Scoophead trade Shuttle" + desc = "A shuttle linked to the Nebula Gas Station. Its a cargo ship refitted to be a smaller trade ship, easier to land than the Beruang. The Free Trade Union will always deliver." + color = "#ff811a" //Orange + fore_dir = WEST + vessel_mass = 10000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Scoophead trade Shuttle" + +/obj/machinery/computer/shuttle_control/explore/trade/scoophead + name = "short jump console" + shuttle_tag = "Scoophead trade Shuttle" + +/area/shuttle/scoophead + requires_power = 1 + icon_state = "shuttle2" + dynamic_lighting = DYNAMIC_LIGHTING_ENABLED + area_flags = AREA_RAD_SHIELDED | AREA_FLAG_ERODING + sound_env = SMALL_ENCLOSED + +/area/shuttle/scoophead/cockpit + name = "Scoophead Cockpit" + +/area/shuttle/scoophead/main + name = "Scoophead Trading Section" + +/area/shuttle/scoophead/office + name = "Scoophead Office" + +/area/shuttle/scoophead/engineering + name = "Scoophead Engine Bay" + +/area/shuttle/scoophead/main2 + name = "Scoophead TraderSection" + +//Arrowhead Shuttle + +/datum/shuttle/autodock/overmap/trade/arrowhead + name = "Arrowhead Racing Shuttle" + warmup_time = 8 + shuttle_area = list(/area/shuttle/arrowhead) + current_location = "tradeport_arrowhead" + docking_controller_tag = "tradeport_arrowhead_docker" + fuel_consumption = 5 + move_time = 10 + +/obj/overmap/entity/visitable/ship/landable/trade/arrowhead + name = "Arrowhead Racing Shuttle" + desc = "A ex-racing shuttle, part of the VIP suite of the Nebula Motel." + scanner_name = "Arrowhead Racing Shuttle" + scanner_desc = @{"[i]Registration[/i]: --- +[i]Class[/i]: Racing Shuttle +[i]Transponder[/i]: Transmitting (CIV), Registered with the FTU, non-hostile +[b]Notice[/b]: Racing shuttle, winner of the 2542 Voidline gold trophy"} + color = "#002d75" //Darkblue + fore_dir = WEST + vessel_mass = 10000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Arrowhead Racing Shuttle" + +/obj/machinery/computer/shuttle_control/explore/arrowhead + name = "short jump console" + shuttle_tag = "Arrowhead Racing Shuttle" + +/area/shuttle/arrowhead + name = "Arrowhead" + requires_power = 1 + icon_state = "shuttle2" + dynamic_lighting = DYNAMIC_LIGHTING_ENABLED + area_flags = AREA_RAD_SHIELDED | AREA_FLAG_ERODING + sound_env = SMALL_ENCLOSED + +//Spacena Caravan Shuttle + +/datum/shuttle/autodock/overmap/trade/caravan + name = "Spacena Caravan Shuttle" + warmup_time = 8 + shuttle_area = list(/area/shuttle/caravan) + current_location = "tradeport_caravan" + docking_controller_tag = "tradeport_caravan_docker" + fuel_consumption = 3 + move_time = 10 + +/obj/overmap/entity/visitable/ship/landable/trade/caravan + name = "Spacena Caravan Shuttle" + desc = "A cheap shuttle made for people wanting to live in their shuttle or travel." + scanner_name = "Spacena Caravan Shuttle" + scanner_desc = @{"[i]Registration[/i]: --- +[i]Class[/i]: Spacena Caravan Shuttle +[i]Transponder[/i]: Transmitting (CIV), Registered with the FTU, non-hostile +[b]Notice[/b]: Caravan shuttle, cheap, comfy, fragile."} + color = "#8f6f4b" //Brown + fore_dir = WEST + vessel_mass = 3000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Spacena Caravan Shuttle" + +/obj/machinery/computer/shuttle_control/explore/caravan + name = "short jump console" + shuttle_tag = "Spacena Caravan Shuttle" + +/area/shuttle/caravan + name = "Caravan" + requires_power = 1 + icon_state = "shuttle2" + dynamic_lighting = DYNAMIC_LIGHTING_ENABLED + area_flags = AREA_RAD_SHIELDED | AREA_FLAG_ERODING + sound_env = SMALL_ENCLOSED + +//Spacena adventurer Shuttle + +/datum/shuttle/autodock/overmap/trade/adventurer + name = "Spacena Adventurer Shuttle" + warmup_time = 8 + shuttle_area = list(/area/shuttle/adventurer) + current_location = "tradeport_adventurer" + docking_controller_tag = "tradeport_adventurer_docker" + fuel_consumption = 3 + move_time = 10 + +/obj/overmap/entity/visitable/ship/landable/trade/adventurer + name = "Spacena adventurer Shuttle" + desc = "A cheap shuttle, variant of the Spacena Caravan, made for more versatile use." + color = "#323f55" //Blue grey + fore_dir = WEST + vessel_mass = 3000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Spacena Adventurer Shuttle" + +/obj/machinery/computer/shuttle_control/explore/adventurer + name = "short jump console" + shuttle_tag = "Spacena Adventurer Shuttle" + +/area/shuttle/adventurer + name = "Adventurer" + requires_power = 1 + icon_state = "shuttle2" + dynamic_lighting = DYNAMIC_LIGHTING_ENABLED + area_flags = AREA_RAD_SHIELDED | AREA_FLAG_ERODING + sound_env = SMALL_ENCLOSED + +//Cargo tug Shuttle + +/datum/shuttle/autodock/overmap/trade/tug + name = "Cargo Tug Hauler Shuttle" + warmup_time = 8 + shuttle_area = list(/area/shuttle/tug) + current_location = "tradeport_tug" + docking_controller_tag = "tradeport_tug_docker" + fuel_consumption = 4 + move_time = 10 + +/obj/overmap/entity/visitable/ship/landable/trade/tug + name = "Cargo Tug Hauler Shuttle" + desc = "A Shuttle made to tug barge, offering a high ammount of cargo ." + color = "#6b6d52" + fore_dir = WEST + vessel_mass = 5000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Cargo Tug Hauler Shuttle" + +/obj/machinery/computer/shuttle_control/explore/tug + name = "short jump console" + shuttle_tag = "Cargo Tug Hauler Shuttle" + +/area/shuttle/tug + name = "Tug" + requires_power = 1 + icon_state = "shuttle2" + dynamic_lighting = DYNAMIC_LIGHTING_ENABLED + area_flags = AREA_RAD_SHIELDED | AREA_FLAG_ERODING + sound_env = SMALL_ENCLOSED + +//Utility Micro Shuttle + +/datum/shuttle/autodock/overmap/trade/utilitymicro + name = "Utility Micro Shuttle" + warmup_time = 8 + shuttle_area = list(/area/shuttle/utilitymicro) + current_location = "tradeport_utilitymicro" + docking_controller_tag = "tradeport_utilitymicro_docker" + fuel_consumption = 1 + move_time = 10 + +/obj/overmap/entity/visitable/ship/landable/trade/utilitymicro + name = "Utility Micro Shuttle" + desc = "A Shuttle made to tug barge, offering a high ammount of cargo ." + color = "#6b6d52" + fore_dir = WEST + vessel_mass = 1000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Utility Micro Shuttle" + +/obj/machinery/computer/shuttle_control/explore/utilitymicro + name = "short jump console" + shuttle_tag = "Utility Micro Shuttle" + +/area/shuttle/utilitymicro + name = "UMS" + requires_power = 1 + icon_state = "shuttle2" + dynamic_lighting = DYNAMIC_LIGHTING_ENABLED + area_flags = AREA_RAD_SHIELDED | AREA_FLAG_ERODING + sound_env = SMALL_ENCLOSED + +//Teshari Runabout + +/datum/shuttle/autodock/overmap/trade/runabout + name = "Teshari Runabout Shuttle" + warmup_time = 8 + shuttle_area = list(/area/shuttle/runabout) + current_location = "tradeport_runabout" + docking_controller_tag = "tradeport_runabout_docker" + fuel_consumption = 3 + move_time = 10 + +/obj/overmap/entity/visitable/ship/landable/trade/runabout + name = "Teshari Runabout Shuttle" + desc = "A teshari Design... At least the hull is, probably found in a shipyard, after being decommisionned. This shuttle might have been once a scout vessel linked with a other bigger teshari or skrell ship, and as been modified for civilian use." + color = "#aa499b" + fore_dir = WEST + vessel_mass = 10000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Teshari Runabout Shuttle" + +/obj/machinery/computer/shuttle_control/explore/runabout + name = "short jump console" + shuttle_tag = "Teshari Runabout Shuttle" + +/area/shuttle/runabout + name = "Teshari Runabout" + requires_power = 1 + icon_state = "shuttle2" + dynamic_lighting = DYNAMIC_LIGHTING_ENABLED + area_flags = AREA_RAD_SHIELDED | AREA_FLAG_ERODING + sound_env = SMALL_ENCLOSED diff --git a/maps/sectors/nebula_tradeport/nebula_tradeport.dm b/maps/sectors/nebula_tradeport/nebula_tradeport.dm new file mode 100644 index 000000000000..d0afd85dd19e --- /dev/null +++ b/maps/sectors/nebula_tradeport/nebula_tradeport.dm @@ -0,0 +1,27 @@ +/datum/map/sector/nebula_tradeport + id = "nebula_tradeport" + name = "Sector - Nebula Trade Port (192x192)" + width = 192 + height = 192 + levels = list( + /datum/map_level/sector/nebula_tradeport, + ) + legacy_assert_shuttle_datums = list( + /datum/shuttle/autodock/overmap/trade, + /datum/shuttle/autodock/overmap/trade/udang, + /datum/shuttle/autodock/overmap/trade/scoophead, + /datum/shuttle/autodock/overmap/trade/arrowhead, + /datum/shuttle/autodock/overmap/trade/caravan, + /datum/shuttle/autodock/overmap/trade/adventurer, + /datum/shuttle/autodock/overmap/trade/tug, + /datum/shuttle/autodock/overmap/trade/utilitymicro, + /datum/shuttle/autodock/overmap/trade/runabout, + ) + +/datum/map_level/sector/nebula_tradeport + id = "NebulaTradeport" + name = "Sector - Nebula Trade Port (192x192)" + display_name = "Nebula Gas Trade Hub" + path = "maps/sectors/nebula_tradeport/levels/nebula_tradeport.dmm" + base_turf = /turf/space + base_area = /area/space diff --git a/maps/sectors/tradeport/shuttles.dm b/maps/sectors/tradeport/shuttles.dm deleted file mode 100644 index 73c3f103f4e3..000000000000 --- a/maps/sectors/tradeport/shuttles.dm +++ /dev/null @@ -1,32 +0,0 @@ -/datum/shuttle/autodock/overmap/trade - name = "Beruang Trade Ship" - warmup_time = 0 - shuttle_area = list(/area/shuttle/trade_ship/cockpit, /area/shuttle/trade_ship/general) - current_location = "tradeport_hangar" - docking_controller_tag = "tradeport_hangar_docker" - fuel_consumption = 5 - move_time = 10 - -/obj/overmap/entity/visitable/ship/landable/trade - name = "Beruang Trade Ship" - desc = "You know our motto: 'We deliver!'" - color = "#754116" //Brown - fore_dir = WEST - vessel_mass = 4000 - vessel_size = SHIP_SIZE_SMALL - shuttle = "Beruang Trade Ship" - -/obj/machinery/computer/shuttle_control/explore/trade - name = "short jump console" - shuttle_tag = "Beruang Trade Ship" - -/area/shuttle/trade_ship - requires_power = 1 - icon_state = "shuttle2" - area_flags = AREA_RAD_SHIELDED - -/area/shuttle/trade_ship/general - name = "\improper Beruang Trade Shuttle" - -/area/shuttle/trade_ship/cockpit - name = "\improper Beruang Trade Shuttle Cockpit" diff --git a/maps/sectors/tradeport_192/levels/tradeport_192.dmm b/maps/sectors/tradeport_192/levels/tradeport_192.dmm deleted file mode 100644 index c6f2037d1030..000000000000 --- a/maps/sectors/tradeport_192/levels/tradeport_192.dmm +++ /dev/null @@ -1,51694 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/flora/pumpkin, -/obj/effect/floor_decal/grass_edge, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"ab" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/briefcase/fission{ - starts_with = list(/obj/item/coin/supermatter,/obj/item/coin/supermatter,/obj/item/coin/supermatter) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"ad" = ( -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"ae" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/door/window/westleft{ - req_access = list(160) - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"ag" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/solar, -/turf/simulated/floor/airless, -/area/space) -"ah" = ( -/mob/living/simple_mob/animal/passive/dog/tamaskan/Spice, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"ai" = ( -/obj/effect/floor_decal/grass_edge, -/turf/simulated/floor/outdoors/dirtlight, -/area/tradeport/cyndishow) -"aj" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"al" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"am" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"an" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 8; - id = "spine_inbound" - }, -/turf/simulated/floor/plating, -/area/tradeport/spine) -"ao" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"ar" = ( -/obj/effect/floor_decal/techfloor, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"as" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"av" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 4; - name = "Nebula Gas - Dormitories"; - req_access = list(160) - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"aw" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 6 - }, -/turf/simulated/floor/bmarble, -/area/tradeport/cafeteria) -"ax" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/airlock/glass{ - name = "Restrooms" - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/tradeport) -"ay" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/stasis_cage, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"az" = ( -/turf/simulated/floor/outdoors/beach/sand/desert, -/area/tradeport/cyndishow) -"aA" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "trade-ship-secure"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/spawner/window/low_wall/full/firelocks/nogrille, -/turf/simulated/shuttle/plating, -/area/shuttle/trade_ship/general) -"aC" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"aG" = ( -/obj/machinery/computer/shuttle_control/explore/trade{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"aH" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "trade"; - name = "Shop Shutters"; - opacity = 0 - }, -/obj/spawner/window/low_wall/full/firelocks/nogrille, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"aI" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/air_alarm/alarms_hidden{ - pixel_y = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/tradeport) -"aJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/external/glass{ - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"aK" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/cheesyfries, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"aL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"aM" = ( -/obj/machinery/door/airlock/multi_tile/glass/polarized{ - id_tint = "traderportdoor"; - req_access = list(160) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"aN" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/random/multiple/large_corp_crate, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"aO" = ( -/obj/structure/table/standard, -/obj/random/soap, -/obj/item/clothing/gloves/sterile/nitrile, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/surgicalapron, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"aP" = ( -/obj/machinery/door/window/southright{ - name = "Cargo Hold"; - req_access = list(160) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"aS" = ( -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"aT" = ( -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tradeport/pads) -"aU" = ( -/obj/item/radio/intercom/trader{ - pixel_y = -25 - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"aV" = ( -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"aW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"aZ" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 4; - req_access = list(160) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"ba" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"bb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"bc" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/spine) -"bf" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"bg" = ( -/obj/machinery/door/airlock/silver{ - name = "Toilet" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/commons) -"bh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/commhall) -"bi" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 4; - name = "Nebula Gas - Warehouse"; - req_access = list(160) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"bj" = ( -/obj/effect/decal/remains/mummy1, -/turf/simulated/floor/outdoors/beach/sand/desert, -/area/tradeport/cyndishow) -"bk" = ( -/obj/structure/outcrop, -/turf/simulated/mineral/floor/vacuum, -/area/space) -"bl" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/chair/comfy, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"bn" = ( -/obj/machinery/camera{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndishow) -"bo" = ( -/obj/random/multiple/voidsuit/vintage, -/obj/structure/closet, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"bp" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/tradeport) -"bq" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/grass, -/area/tradeport) -"bs" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/space, -/area/space) -"bt" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tradeport/medical) -"bv" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"bA" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"bB" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/captain, -/obj/machinery/computer/security/telescreen{ - pixel_y = -35 - }, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"bD" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/milosoup, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"bF" = ( -/obj/machinery/vending/loadout, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"bH" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"bI" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/secure/loot, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"bJ" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"bM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/closet/crate/solar, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"bN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/poster{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/tradeport) -"bO" = ( -/obj/machinery/light, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"bP" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/poster{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"bS" = ( -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tradeport/pads) -"bT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/graffiti, -/turf/simulated/floor/plating, -/area/tradeport) -"bU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/atmospherics) -"bV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"bW" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"bY" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/airlock_sensor{ - pixel_y = -25 - }, -/obj/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/plating, -/area/tradeport/pads) -"bZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/tradeport/atmospherics) -"ca" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"cb" = ( -/obj/item/material/gravemarker, -/obj/effect/floor_decal/grass_edge{ - dir = 10 - }, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"cd" = ( -/turf/space/basic, -/area/space) -"cf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"cg" = ( -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/catering/bar_alc, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"ch" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"ci" = ( -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"ck" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"cm" = ( -/obj/structure/coatrack{ - pixel_x = 11; - pixel_y = 13 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"cn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"co" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/airlock/glass{ - name = "Hydroponics" - }, -/turf/simulated/floor/grass, -/area/tradeport) -"cp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tradeport) -"cq" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"cs" = ( -/obj/machinery/vending/loadout/gadget, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"ct" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/table/hardwoodtable, -/obj/item/toy/character/alien, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"cv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"cx" = ( -/obj/structure/transit_tube/station{ - automatic_launch_time = 40 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"cy" = ( -/obj/structure/flora/pottedplant/smalltree, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"cA" = ( -/obj/machinery/door/airlock/glass{ - name = "Showers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"cB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"cE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"cG" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"cH" = ( -/obj/structure/outcrop, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"cI" = ( -/obj/structure/bonfire/permanent, -/turf/simulated/floor/snow, -/area/tradeport/cyndishow) -"cJ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"cM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/item/gun/ballistic/automatic/as24{ - desc = "Never ask to speak to the manager."; - name = "Kate" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndi) -"cN" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 4; - id = "spine_outbound" - }, -/turf/simulated/floor/plating, -/area/tradeport/spine) -"cP" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = list(160); - req_one_access = null - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"cQ" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "tradestarshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/shuttle/plating, -/area/shuttle/trade_ship/general) -"cR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"cS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/wall/r_wall, -/area/tradeport) -"cT" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/space) -"cV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"cW" = ( -/obj/machinery/suit_storage_unit/syndicate, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"cX" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"cY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1380; - id_tag = "trade_pumps"; - pixel_x = -25; - pixel_y = -26 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/tradeport) -"cZ" = ( -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "storeshutter1" - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/facility) -"da" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-10" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/button/remote/blast_door{ - id = "tradeportshutters"; - name = "remote shutter control"; - pixel_x = 30; - req_access = list(160) - }, -/turf/simulated/floor/carpet/bcarpet, -/area/shuttle/trade_ship/general) -"de" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/warning/airlock{ - pixel_x = -32 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"df" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "clerk"; - name = "Clerk Shutters" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/cash_register/trader{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"dk" = ( -/obj/machinery/camera{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"dl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"dm" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/space, -/area/space) -"dn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor, -/area/tradeport/pads) -"do" = ( -/obj/structure/fireaxecabinet{ - pixel_y = 32; - req_access = list(160) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"dp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/alien, -/obj/item/phone, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"dq" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8; - frequency = 8018; - id_tag = "tradeport_hangar_dock" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"dr" = ( -/obj/item/towel/random, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/structure/table/standard, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"dt" = ( -/obj/structure/barricade{ - icon_state = null; - name = "stairs" - }, -/turf/simulated/floor/tiled/asteroid_steel, -/area/tradeport/cyndishow) -"du" = ( -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/spine) -"dv" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "storeshutter3"; - pixel_x = 24; - req_access = list(160) - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"dw" = ( -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"dy" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/closet, -/obj/item/clothing/suit/storage/hooded/wintercoat/cosmic, -/obj/item/clothing/suit/storage/hooded/wintercoat/cosmic, -/obj/item/clothing/suit/storage/toggle/heated/ronincoat, -/obj/item/clothing/suit/storage/hooded/wintercoat/ratvar, -/obj/item/clothing/shoes/fake_brass, -/obj/item/clothing/suit/storage/hooded/cloak/goliath, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"dz" = ( -/obj/structure/flora/pumpkin/carved/owo, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"dA" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/dock) -"dB" = ( -/obj/machinery/atmospherics/component/binary/passive_gate/on{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport) -"dD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"dE" = ( -/turf/simulated/floor/wood, -/area/tradeport) -"dF" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"dG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"dK" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/beach/sand/desert/indoors, -/area/tradeport/safarizoo) -"dM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"dN" = ( -/obj/item/reagent_containers/food/snacks/lobster, -/obj/item/reagent_containers/food/snacks/lobster, -/obj/item/reagent_containers/food/snacks/lobster, -/obj/item/reagent_containers/food/snacks/lobster, -/obj/item/reagent_containers/food/snacks/lobster, -/obj/item/reagent_containers/food/snacks/lobster, -/obj/structure/closet/crate/freezer, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"dP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"dQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"dR" = ( -/obj/machinery/vending/snack{ - name = "hacked Getmore Chocolate Corp"; - prices = list() - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"dS" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "storeshutter2"; - pixel_x = 24; - req_access = list(160) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"dV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"dW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(160); - req_one_access = null - }, -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/tradeport/facility) -"dX" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"ea" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"eb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"ed" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"ee" = ( -/obj/machinery/air_alarm/alarms_hidden{ - dir = 4; - pixel_x = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"ej" = ( -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 4; - pixel_x = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"ek" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/vent{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/shuttle/trade_ship/general) -"em" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - locked = 0 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 4; - pixel_x = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"en" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"ep" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"eq" = ( -/obj/structure/table/steel_reinforced, -/obj/structure/window/reinforced, -/obj/item/hardsuit/internalaffairs, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"er" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"eu" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"ev" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"ew" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/space, -/area/space) -"ex" = ( -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"ey" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"eA" = ( -/obj/structure/table/alien, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite{ - last_battery_percent = 100 - }, -/obj/machinery/newscaster{ - pixel_y = 35 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"eB" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"eC" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"eD" = ( -/turf/simulated/wall/r_wall, -/area/tradeport) -"eE" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"eH" = ( -/obj/machinery/access_button{ - command = "cycle_int"; - frequency = 8018; - master_tag = "trade_space_lock"; - pixel_x = -25; - pixel_y = -5 - }, -/obj/machinery/door/airlock/glass_external{ - name = "Ship Hatch" - }, -/obj/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"eI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"eJ" = ( -/obj/structure/sign/atmos_plasma{ - desc = "WARNING! Plasma flow tube nearby."; - name = "Pump Six" - }, -/turf/simulated/wall/r_wall, -/area/tradeport/pads) -"eK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"eL" = ( -/obj/machinery/gear_painter, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"eO" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/alien, -/obj/item/folder/blue_captain, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"eP" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"eQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"eR" = ( -/obj/structure/table/standard, -/obj/item/storage/box/glasses/square, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet, -/area/shuttle/trade_ship/general) -"eS" = ( -/obj/structure/table/glass, -/obj/structure/closet/walllocker/autolok_wall{ - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"eV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump3d"; - name = "Nebula Pump Controller"; - pixel_x = -25 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"eW" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "trade"; - name = "Shop Shutters"; - opacity = 0 - }, -/obj/structure/table/marble, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/item/deskbell{ - pixel_x = -7; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"eX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"fa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"fc" = ( -/obj/structure/table/steel_reinforced, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/lightreplacer, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/reagent_containers/spray/cleaner/drone, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"fd" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"fe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/spine) -"ff" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/machinery/computer/arcade/orion_trail, -/turf/simulated/floor/tiled/old_tile/gray, -/area/tradeport) -"fh" = ( -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/blue, -/obj/item/clothing/gloves/brown, -/obj/item/clothing/gloves/captain, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/gloves/green, -/obj/item/clothing/gloves/grey, -/obj/item/clothing/gloves/light_brown, -/obj/item/clothing/gloves/purple, -/obj/item/clothing/gloves/rainbow, -/obj/item/clothing/gloves/swat, -/obj/item/clothing/gloves/white, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/closet, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"fi" = ( -/obj/structure/fence/door/locked, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"fm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"fo" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/mob/living/bot/farmbot{ - desc = "Stupid bot. You make me look bad."; - name = "Eustace"; - on = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"fq" = ( -/obj/structure/poster{ - pixel_y = -32 - }, -/obj/machinery/atm{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"fr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"ft" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/debris/cleanable/dirt, -/obj/random/cutout, -/turf/simulated/floor/tiled/neutral, -/area/tradeport) -"fv" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "safari"; - name = "Safari Shutters"; - pixel_x = -27; - pixel_y = 5 - }, -/obj/machinery/button/holosign{ - id = "safarisign"; - pixel_x = -26; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"fw" = ( -/obj/machinery/vending/snack{ - name = "hacked Getmore Chocolate Corp"; - prices = list() - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"fx" = ( -/obj/machinery/vending/loadout/loadout_misc, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"fz" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/snacks/bagged/chips, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"fE" = ( -/obj/structure/coatrack, -/obj/machinery/newscaster{ - pixel_x = -35; - pixel_y = 3 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"fF" = ( -/obj/structure/undies_wardrobe, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"fG" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "spine_inbound" - }, -/turf/simulated/floor/airless, -/area/tradeport/spine) -"fI" = ( -/obj/structure/flora/grass/brown, -/turf/simulated/floor/snow, -/area/tradeport/cyndishow) -"fJ" = ( -/obj/machinery/vending/assist{ - contraband = null; - name = "Old Vending Machine"; - products = list(/obj/item/assembly/prox_sensor = 5, /obj/item/assembly/signaler = 4, /obj/item/assembly/infra = 4, /obj/item/assembly/prox_sensor = 4, /obj/item/handcuffs = 8, /obj/item/flash = 4, /obj/item/cartridge/signal = 4, /obj/item/clothing/glasses/sunglasses = 4) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"fK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/biogenerator, -/turf/simulated/floor/grass, -/area/tradeport) -"fL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/debris/cleanable/blood/drip, -/turf/simulated/floor/tiled/old_tile/white, -/area/tradeport) -"fN" = ( -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "expansion_wing"; - name = "Door Bolts"; - pixel_x = -26; - specialfunctions = 4 - }, -/turf/simulated/floor/plating, -/area/tradeport/commhall) -"fO" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 1 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/bmarble, -/area/tradeport/cafeteria) -"fQ" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/crayonburger_rbw, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"fR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"fS" = ( -/obj/machinery/atmospherics/pipe/tank/phoron, -/obj/structure/window/reinforced/tinted, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/plating, -/area/shuttle/trade_ship/general) -"fT" = ( -/obj/machinery/light, -/obj/machinery/vending/loadout/costume, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"fU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"fV" = ( -/obj/machinery/door/window/westleft{ - name = "Storefront"; - req_access = list(160) - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "trade"; - name = "Shop Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"fW" = ( -/obj/machinery/door/window/westleft{ - dir = 2 - }, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"fZ" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport/facility) -"ga" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"gb" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 8018; - id_tag = "trade_space_lock"; - pixel_x = -25 - }, -/obj/effect/shuttle_landmark/trade/hangar, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"gc" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"gd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/airlock/glass{ - name = "Kitchen" - }, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"ge" = ( -/obj/structure/closet/walllocker/autolok_wall{ - pixel_y = 24 - }, -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"gf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"gg" = ( -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"gh" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump3a"; - landmark_tag = "nebula_pad_3a"; - name = "Nebula Pad 3a" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"gi" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/trade_ship/cockpit) -"gj" = ( -/obj/machinery/door/airlock/glass/medical{ - name = "Medical Bay"; - req_access = list(160); - req_one_access = null - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"gk" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/bed/chair/comfy, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"gl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"gn" = ( -/obj/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/airlock_sensor{ - pixel_x = -25; - pixel_y = 25 - }, -/obj/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - frequency = 1380; - id_tag = "trade_pumps" - }, -/turf/simulated/floor/plating, -/area/tradeport) -"go" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"gp" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"gr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"gu" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom/trader{ - dir = 1; - pixel_y = 25 - }, -/obj/structure/closet/crate, -/obj/fiftyspawner/bcarpet, -/obj/fiftyspawner/blucarpet, -/obj/fiftyspawner/arcadecarpet, -/obj/fiftyspawner/carpet, -/obj/fiftyspawner/gaycarpet, -/obj/fiftyspawner/oracarpet, -/obj/fiftyspawner/purcarpet, -/obj/fiftyspawner/sblucarpet, -/obj/fiftyspawner/tealcarpet, -/obj/fiftyspawner/turcarpet, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"gv" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"gx" = ( -/obj/machinery/seed_extractor, -/turf/simulated/floor/grass, -/area/tradeport) -"gy" = ( -/obj/machinery/cryopod/robot/trade, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/commons) -"gB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"gC" = ( -/obj/structure/fence/corner{ - dir = 5 - }, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"gF" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/poster, -/obj/item/poster, -/obj/item/poster, -/obj/item/poster, -/obj/item/poster, -/obj/item/poster, -/obj/item/poster, -/obj/item/poster, -/obj/item/poster, -/obj/item/poster, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"gJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tradeport/cyndishow) -"gL" = ( -/obj/structure/bed/chair, -/obj/machinery/newscaster{ - pixel_y = 35 - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"gM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"gO" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 10 - }, -/turf/simulated/floor/bmarble, -/area/tradeport/cafeteria) -"gP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"gR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"gS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Nebula Gas - Employees Only"; - req_access = list(160) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport) -"gU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"gV" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1380; - id_tag = "line maintenance"; - pixel_x = 28 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/tradeport/pads) -"gX" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate, -/obj/item/stolenpackageplus, -/obj/item/stolenpackageplus, -/obj/item/stolenpackageplus, -/obj/item/stolenpackageplus, -/obj/item/stolenpackageplus, -/obj/item/stolenpackageplus, -/obj/item/stolenpackageplus, -/obj/item/stolenpackageplus, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"gZ" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"ha" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"hb" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"hc" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"hf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"hg" = ( -/obj/machinery/door/airlock/silver{ - name = "Restroom" - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/trade_ship/cockpit) -"hi" = ( -/obj/machinery/light, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"hj" = ( -/obj/machinery/camera{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"hl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/card/emag{ - desc = "It's a card with a magnetic strip attached to some circuitry. Looks really flimsy, like it'll fall apart at any moment."; - name = "discount cryptographic sequencer"; - uses = 1 - }, -/obj/structure/poster{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"hn" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - landmark_tag = "nebula_space_SW"; - name = "Near Nebulous Gas (SW)" - }, -/turf/space, -/area/space) -"ho" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"hr" = ( -/obj/machinery/power/apc/alarms_hidden/south_mount{ - cell_type = /obj/item/cell/super; - req_access = list(160) - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"hs" = ( -/obj/structure/closet/secure_closet/guncabinet{ - anchored = 1; - req_access = list(160); - req_one_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"ht" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump4a"; - name = "Nebula Pump Controller"; - pixel_x = -25 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"hu" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"hA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"hB" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"hC" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump1b"; - name = "Nebula Pump Controller"; - pixel_x = 25 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"hD" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/commons) -"hF" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/wmarble, -/obj/fiftyspawner/bmarble, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"hJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"hL" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"hN" = ( -/obj/structure/closet/crate/freezer{ - name = "exotic meats freezer" - }, -/obj/random/meat/no_sapient, -/obj/random/meat/no_sapient, -/obj/random/meat/no_sapient, -/obj/random/meat/no_sapient, -/obj/random/meat/no_sapient, -/obj/random/meat/no_sapient, -/obj/structure/window/reinforced, -/obj/item/reagent_containers/food/snacks/xenomeat, -/obj/item/reagent_containers/food/snacks/xenomeat, -/obj/item/reagent_containers/food/snacks/meat/worm, -/obj/item/reagent_containers/food/snacks/bearmeat, -/obj/item/reagent_containers/food/snacks/bearmeat, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"hP" = ( -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"hQ" = ( -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"hT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"hU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"hV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"hW" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "safari"; - name = "Safari Clerk Shutters" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"hY" = ( -/obj/structure/table/woodentable, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"hZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/random/maintenance/clean, -/obj/structure/sink{ - pixel_y = 19 - }, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"ia" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/pads) -"ic" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"ie" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -14 - }, -/obj/structure/mirror/long/left_broke{ - dir = 8; - pixel_x = -29 - }, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"ig" = ( -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"ii" = ( -/obj/effect/debris/cleanable/generic, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"ik" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"im" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"io" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"iq" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/fire_alarm/west_mount{ - pixel_x = -26 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"is" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"it" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump3d"; - landmark_tag = "nebula_pad_3d"; - name = "Nebula Pad 3d" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"iu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"iv" = ( -/obj/structure/catwalk, -/turf/space, -/area/space) -"iw" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - landmark_tag = "nebula_space_S"; - name = "Near Nebulous Gas (S)" - }, -/turf/space, -/area/space) -"iy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"iA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tradeport/cyndishow) -"iC" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"iD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"iE" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "trade-ship-secure"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/machinery/button/remote/blast_door{ - id = "trade-ship-secure"; - name = "Cargo Bay Shutters"; - pixel_x = -7; - pixel_y = 24; - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/button/remote/blast_door{ - id = "trade"; - name = "Shop Shutters"; - pixel_x = 6; - pixel_y = 24; - req_access = list(160) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"iF" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"iI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "rare item display case"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/item/sword/fluff/joanaria/scisword, -/obj/machinery/camera{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport/cyndishow) -"iK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"iL" = ( -/obj/effect/debris/cleanable/blood/drip, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"iM" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"iN" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id = "tradebridgeshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/shuttle/plating, -/area/shuttle/trade_ship/general) -"iO" = ( -/obj/structure/window/reinforced, -/obj/structure/table/woodentable, -/obj/item/material/kitchen/rollingpin/durasteel, -/obj/item/material/knife/butch/plasteel, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"iP" = ( -/obj/machinery/door/window/westleft{ - dir = 2 - }, -/obj/machinery/shower{ - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/curtain/open/shower{ - pixel_y = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/commons) -"iQ" = ( -/obj/overmap/entity/visitable/sector/trade_post, -/turf/space, -/area/space) -"iR" = ( -/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/tiled/red, -/area/shuttle/trade_ship/general) -"iT" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"iU" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/toy/syndicateballoon, -/obj/item/toy/syndicateballoon, -/obj/item/toy/syndicateballoon, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"iV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/sofa, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport) -"iW" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lightpost, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"iX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"iZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"jb" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - name = "rare item display case"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/item/gun/energy/decloner, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"jc" = ( -/obj/machinery/light_switch{ - dir = 1 - }, -/turf/simulated/wall, -/area/tradeport/commons) -"jd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/tradeport) -"jf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/gear_painter, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"jg" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/door/airlock/sandstone{ - frequency = 1382; - id_tag = "safari_access"; - name = "The Safari Zone"; - req_access = list(160); - tag = "safari_door" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tradeport/safari) -"jh" = ( -/obj/item/radio/intercom/trader{ - pixel_y = -25 - }, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"ji" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"jj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/air_alarm/alarms_hidden{ - pixel_y = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport) -"jl" = ( -/turf/simulated/floor/plating, -/area/tradeport/expansion) -"jn" = ( -/obj/machinery/light, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/tradeport/engineering) -"jo" = ( -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/cockpit) -"jq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/tradeport) -"js" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/component/binary/pump{ - dir = 8; - name = "air to distro" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"ju" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/access_button{ - command = "cycle_ext"; - frequency = 1380; - pixel_x = 5; - pixel_y = 25; - req_access = list(160) - }, -/obj/machinery/door/airlock/glass_external{ - name = "Nebula Gas - Employees Only" - }, -/turf/simulated/floor/plating, -/area/tradeport) -"jw" = ( -/obj/structure/medical_stand, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/medical) -"jy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"jB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"jC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"jD" = ( -/obj/machinery/door/blast/regular, -/turf/simulated/floor/plating, -/area/tradeport/pads) -"jE" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/button/remote/blast_door{ - id = "tradebridgeshutters"; - name = "remote shutter control"; - pixel_x = 30; - req_access = list(160) - }, -/obj/structure/flora/pottedplant{ - icon_state = "plant-09"; - name = "Esteban"; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"jF" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndishow) -"jG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"jJ" = ( -/obj/structure/filingcabinet/tall, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"jK" = ( -/obj/machinery/vending/glukoz{ - prices = list() - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"jM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"jP" = ( -/obj/machinery/holosign/bar{ - id = "safarisign" - }, -/turf/simulated/wall/r_wall, -/area/tradeport/safari) -"jQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"jR" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"jV" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/reagent_containers/syringe/drugs, -/obj/item/reagent_containers/syringe/drugs, -/obj/item/reagent_containers/syringe/drugs, -/obj/item/reagent_containers/syringe/drugs, -/obj/random/unidentified_medicine/drug_den, -/obj/random/unidentified_medicine/drug_den, -/obj/random/unidentified_medicine/drug_den, -/obj/random/unidentified_medicine/drug_den, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"jW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/wooden_reinforced, -/obj/item/gun/energy/netgun, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"jX" = ( -/obj/machinery/suit_storage_unit/syndicate, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"jY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"ka" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport) -"kb" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/whetstone, -/obj/item/whetstone, -/obj/item/whetstone, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"kc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/plating, -/area/tradeport) -"ke" = ( -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"kf" = ( -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"ki" = ( -/turf/simulated/wall, -/area/tradeport/atmospherics) -"kk" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump4a"; - landmark_tag = "nebula_pad_4a"; - name = "Nebula Pad 4a" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"kl" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/shuttle/trade_ship/general) -"ko" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"kp" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/item/radio/intercom/trader{ - dir = 1; - pixel_y = 25 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"kq" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"kt" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/alien, -/obj/structure/poster{ - pixel_x = 32 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/pen/click, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"kv" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/space) -"kw" = ( -/obj/structure/outcrop, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/exterior) -"kz" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -14 - }, -/obj/structure/mirror/long/right_broke{ - dir = 8; - pixel_x = -29 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"kB" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 9 - }, -/turf/simulated/floor/bmarble, -/area/tradeport/cafeteria) -"kC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "rare item display case"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/item/melee/transforming/hfmachete, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"kD" = ( -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"kF" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"kG" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Nebula Gas - Warehouse"; - req_access = list(160) - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"kH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"kJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/air_alarm/alarms_hidden{ - pixel_y = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/spine) -"kK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"kL" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport) -"kQ" = ( -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "storeshutter1" - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/facility) -"kT" = ( -/obj/structure/window/reinforced, -/obj/random/humanoidremains, -/turf/simulated/floor/outdoors/beach/sand/desert, -/area/tradeport/cyndishow) -"kU" = ( -/obj/structure/transit_tube/station{ - automatic_launch_time = 40 - }, -/obj/structure/transit_tube_pod{ - dir = 4; - move_speed = 40 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"kV" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade_ship/general) -"kW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating, -/area/tradeport) -"kX" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"kZ" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"ld" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"le" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"lf" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"lg" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/fire_alarm/west_mount{ - pixel_x = -24 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"lh" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"li" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"lj" = ( -/obj/structure/table/alien, -/obj/item/toy/plushie/bear_bloody{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"lk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/door/airlock/silver{ - name = "Men" - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/tradeport) -"ll" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/largecrate/animal/corgi, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"lm" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/obj/structure/lightpost, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"lo" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"lp" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"lr" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"lt" = ( -/obj/machinery/holopad, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport) -"lv" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/steel, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/steel, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"ly" = ( -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"lz" = ( -/obj/structure/closet/crate, -/obj/item/bedsheet/cosmos, -/obj/item/bedsheet/cosmos, -/obj/item/bee_pack, -/obj/item/bikehorn, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"lA" = ( -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"lB" = ( -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"lC" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/access_button{ - command = "cycle_int"; - frequency = 1380; - pixel_x = -5; - pixel_y = -25; - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/door/airlock/glass_external{ - name = "Nebula Gas - Employees Only" - }, -/turf/simulated/floor/plating, -/area/tradeport/pads) -"lD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/structure/statue/silver/janitor{ - desc = "This statue commemorates Farnsworth, the legendary Nebula Gas janitor. Even posthumously, Farnsworth retains the longest consecutive run of employee of the month awards."; - name = "Employee of the Month" - }, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"lG" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/radio/intercom/trader{ - pixel_y = -25 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"lH" = ( -/obj/machinery/vending/medical{ - density = 0; - pixel_y = -32; - req_access = null - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"lI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/gear_painter, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"lJ" = ( -/obj/machinery/door/airlock/glass_external{ - name = "Nebula Gas - External Access" - }, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/access_button/airlock_exterior{ - frequency = 1380; - master_tag = "trade_docks"; - name = "external access button"; - pixel_y = -24 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"lN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"lO" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"lP" = ( -/obj/structure/sign/botany, -/turf/simulated/wall, -/area/tradeport) -"lQ" = ( -/obj/landmark/spawnpoint/latejoin/tradeport, -/obj/machinery/computer/cryopod{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/commons) -"lR" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"lS" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport) -"lT" = ( -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"lW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow, -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"lX" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"lY" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"lZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/item/storage/secure/briefcase, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"ma" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"mb" = ( -/obj/structure/closet/walllocker/autolok_wall{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"mf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"mg" = ( -/obj/machinery/atmospherics/component/binary/pump/high_power/on{ - frequency = 8018; - id = "mainfuel"; - name = "main fuel pump"; - target_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"mh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "storeshutter2" - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"mi" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"mj" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump5b"; - name = "Nebula Pump Controller"; - pixel_x = 25 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"ml" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/space) -"mn" = ( -/obj/effect/debris/cleanable/dirt, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"mp" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "trade"; - name = "Shop Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/cash_register/trader{ - desc = "Swipe your ID card to make purchases electronically. There is a note at the bottom. Press Custom Order. Enter reason and cost. Then have customer swipe their card. "; - dir = 4; - name = "Trader Register" - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"mr" = ( -/obj/structure/flora/pumpkin/carved/scream, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"ms" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"mu" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/fire_alarm/west_mount{ - pixel_x = -26 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"mw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport/expansion) -"mx" = ( -/obj/machinery/vending/loadout/clothing, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"mz" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/safari) -"mA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"mD" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/random/paintkit, -/obj/random/paintkit, -/obj/random/paintkit, -/obj/random/paintkit, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"mE" = ( -/obj/machinery/door/firedoor, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"mF" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/syndie/c4explosive, -/obj/item/syndie/c4explosive, -/obj/item/syndie/c4explosive, -/obj/item/syndie/c4explosive, -/obj/item/syndie/c4explosive, -/obj/item/syndie/c4explosive, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"mG" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/sofa/left{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport) -"mH" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"mI" = ( -/obj/machinery/vending/sovietsoda{ - contraband = list(/obj/item/reagent_containers/food/drinks/cans/crystalgibb = 20); - desc = "An old sweet water vending machine. It looks like someone crossed out the D and replaced it with an F."; - name = "BOFA"; - products = list(/obj/item/reagent_containers/food/drinks/cans/thirteenloko = 20) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"mJ" = ( -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"mK" = ( -/obj/structure/table/woodentable, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/photocopier/faxmachine{ - department = "Beruang Trade Shuttle" - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/carpet/bcarpet, -/area/shuttle/trade_ship/general) -"mM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"mN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"mP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"mR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"mS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/debris/cleanable/dirt, -/obj/landmark/spawnpoint/job/trader, -/turf/simulated/floor/tiled/neutral, -/area/tradeport) -"mV" = ( -/obj/machinery/door/airlock/external/glass{ - req_access = list(160) - }, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/access_button{ - command = "cycle_int"; - pixel_x = 10; - pixel_y = -25; - req_access = list(160) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tradeport/engineering) -"mW" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/chemical_dispenser/catering/bar_coffee{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"mX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"mZ" = ( -/obj/machinery/door/airlock/external/glass{ - req_access = list(160) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"na" = ( -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"nc" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump1a"; - name = "Nebula Pump Controller"; - pixel_x = 25 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"nd" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"nf" = ( -/obj/machinery/atm{ - pixel_x = -32 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"ng" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"nh" = ( -/obj/machinery/vending/loadout/costume, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"ni" = ( -/obj/machinery/door/window/westleft{ - dir = 2 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cyndi"; - name = "C&K Shutters" - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndi) -"nk" = ( -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"nl" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport/commhall) -"nm" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "tradestarshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/shuttle/plating, -/area/shuttle/trade_ship/general) -"np" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"nq" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/commons) -"nr" = ( -/obj/structure/flora/tree/jungle_small, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"nt" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"nu" = ( -/obj/structure/table/marble, -/obj/item/radio/intercom/trader{ - dir = 1; - pixel_y = 25 - }, -/obj/item/material/knife/butch/plasteel, -/obj/item/material/kitchen/rollingpin/durasteel, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"nv" = ( -/obj/effect/paint/purple, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"nw" = ( -/obj/structure/closet/walllocker/autolok_wall{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"nC" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/largecrate/vehicle/bike, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"nD" = ( -/obj/structure/table/standard, -/obj/item/soap/deluxe, -/obj/item/soap/deluxe, -/obj/item/soap/deluxe, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"nE" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"nH" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"nI" = ( -/obj/machinery/vending/loadout, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"nK" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"nL" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/door/blast/shutters{ - id = "nebulacafe"; - name = "Nebula Cafe Shutters" - }, -/turf/simulated/floor/wood, -/area/tradeport) -"nO" = ( -/obj/machinery/atmospherics/component/binary/pump/high_power/on{ - dir = 8; - frequency = 8018; - id = "pumpthree"; - name = "Pump Three"; - target_pressure = 15000 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"nP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"nQ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"nR" = ( -/obj/structure/table/hardwoodtable, -/obj/item/deck/cards, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"nU" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"nV" = ( -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"nZ" = ( -/obj/machinery/vending/loadout/accessory, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"oa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"ob" = ( -/turf/simulated/floor/plating, -/area/tradeport/commhall) -"od" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"of" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"oj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"ok" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"ol" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/door/airlock/glass_external{ - name = "Ship Hatch" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"on" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/reinforced/airmix, -/area/tradeport/atmospherics) -"oo" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"op" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/cyndi) -"ot" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump2b"; - name = "Nebula Pump Controller"; - pixel_x = -25 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"ou" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8; - frequency = 1380; - id_tag = "tradeport_hangar_dock_pump" - }, -/obj/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"ov" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"ow" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"ox" = ( -/obj/machinery/door/airlock/glass_external{ - name = "Ship Hatch" - }, -/obj/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"oy" = ( -/obj/structure/table/glass, -/obj/item/radio/intercom/trader{ - dir = 1; - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/toy/plushie/bear_panda, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"oB" = ( -/obj/machinery/air_sensor{ - frequency = 1443; - id_tag = "air_sensor"; - output = 7 - }, -/turf/simulated/floor/reinforced/airmix, -/area/tradeport/atmospherics) -"oC" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"oD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"oE" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"oJ" = ( -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"oK" = ( -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/rack/steel, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northleft, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"oL" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"oM" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/spine) -"oO" = ( -/turf/simulated/floor/reinforced/airmix, -/area/tradeport/atmospherics) -"oR" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"oS" = ( -/obj/structure/closet/walllocker/autolok_wall{ - pixel_y = 24 - }, -/obj/structure/dogbed{ - name = "pet bed" - }, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"oT" = ( -/obj/machinery/vending/loadout/clothing, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"oU" = ( -/obj/effect/debris/cleanable/generic, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"oV" = ( -/obj/structure/toilet, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/handrail{ - dir = 4 - }, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/trade_ship/cockpit) -"oX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"oY" = ( -/obj/structure/lattice, -/turf/space, -/area/tradeport/expansion) -"pa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"pd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"pe" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"pf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/door/airlock/silver{ - name = "Women" - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/tradeport) -"pg" = ( -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"ph" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/melee/spike, -/obj/item/melee/spike, -/obj/item/melee/spike, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"pj" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/commhall) -"pk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"pl" = ( -/obj/machinery/light/flamp, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"pn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"pq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"pr" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/tradeport/cafeteria) -"pw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/silver{ - name = "Laundry Room" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"px" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"pA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"pC" = ( -/obj/machinery/optable, -/obj/machinery/oxygen_pump/anesthetic{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"pE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"pG" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"pH" = ( -/obj/structure/table/alien, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"pI" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump3c"; - landmark_tag = "nebula_pad_3c"; - name = "Nebula Pad 3c" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"pJ" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/space) -"pM" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/rack/shelf/steel, -/obj/item/gun/energy/frontier/taj, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"pO" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport/expansion) -"pP" = ( -/obj/machinery/chem_master/condimaster, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"pS" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "clerk"; - name = "Clerk Shutters" - }, -/obj/machinery/button/remote/blast_door{ - id = "clerk"; - pixel_x = -24; - req_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"pT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/tradeport) -"pW" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"pX" = ( -/obj/structure/bed/chair, -/obj/landmark/spawnpoint/job/trader, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"pZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"qb" = ( -/obj/structure/bed/chair/comfy/black, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"qc" = ( -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tradeport/spine) -"qd" = ( -/obj/machinery/air_alarm/alarms_hidden{ - pixel_y = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"qe" = ( -/obj/machinery/camera{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"qf" = ( -/obj/machinery/atmospherics/component/binary/pump/high_power/on{ - dir = 4; - frequency = 8018; - id = "pumpfour"; - name = "Pump Four"; - target_pressure = 15000 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"qg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport) -"qh" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/glass_external{ - name = "Nebula Gas - Employees Only" - }, -/turf/simulated/floor/plating, -/area/tradeport) -"qi" = ( -/obj/map_helper/airlock/door/int_door, -/obj/machinery/door/airlock/glass_external{ - name = "Ship Hatch" - }, -/obj/machinery/access_button/airlock_interior{ - frequency = 1380; - master_tag = "tradeport_hangar_docker"; - pixel_x = -25; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"qj" = ( -/obj/structure/sign/warning/docking_area, -/turf/simulated/wall/r_wall, -/area/tradeport/dock) -"qk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/tradeport) -"qn" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/material/knife/durasteel{ - desc = "A hand sharpened knife, used for cutting valentine treats."; - name = "Leftie"; - pixel_x = 5 - }, -/obj/item/material/knife/machete/hatchet/durasteel{ - desc = "A powerfully sharp axe, crafted with love."; - name = "Rightie" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"qo" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"qp" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"qr" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/bmarble, -/area/tradeport/cafeteria) -"qs" = ( -/obj/structure/table/marble, -/obj/item/pizzabox/meat, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"qt" = ( -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"qw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"qy" = ( -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"qA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"qB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"qC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"qD" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/spine) -"qE" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"qH" = ( -/obj/structure/table/rack/steel, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/pipe_dispenser, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"qJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"qK" = ( -/obj/effect/floor_decal/spline/fancy, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/bmarble, -/area/tradeport/cafeteria) -"qN" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"qQ" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"qR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/exonet_node, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"qU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"qV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass/medical{ - name = "Infirmary"; - req_one_access = null - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"qW" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"qX" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump5b"; - landmark_tag = "nebula_pad5b"; - name = "Nebula Pad 5b" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"qZ" = ( -/obj/structure/bed/chair/bay/comfy/captain{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/cockpit) -"ra" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(160); - req_one_access = null - }, -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/tradeport/engineering) -"rb" = ( -/obj/machinery/newscaster{ - pixel_y = 35 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport) -"rd" = ( -/obj/machinery/light/small/flicker, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"re" = ( -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"rf" = ( -/obj/machinery/atmospherics/pipe/tank/phoron, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"rh" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump1b"; - landmark_tag = "nebula_pad_1b"; - name = "Nebula Pad 1b" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"ri" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"rj" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"rk" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/space) -"rl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/glass_external{ - name = "Ship Hatch" - }, -/obj/machinery/access_button/airlock_exterior{ - frequency = 1380; - master_tag = "tradeport_hangar_docker"; - pixel_x = 25; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"rm" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"rn" = ( -/obj/machinery/door/window/westleft{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"ro" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"rp" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump2b"; - landmark_tag = "nebula_pad_2b"; - name = "Nebula Pad 2b" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"rq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"rs" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/safarizoo) -"rw" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8; - start_pressure = 740.5 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"rx" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"ry" = ( -/obj/structure/closet/walllocker/autolok_wall{ - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 8; - start_pressure = 740.5 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"rD" = ( -/obj/machinery/door/blast/regular, -/turf/simulated/wall/r_wall, -/area/tradeport/dock) -"rG" = ( -/turf/simulated/wall, -/area/tradeport) -"rI" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/plaque{ - desc = "Ancient tombs like these are common across multiple species. The final resting place of Ahten-Ka is a popular topic amongst modern occult enthusiasts, who still debate whether the strange occurrence at that cyclopean pyramid were in fact early instances of Low Frequency Wave interference on humankind." - }, -/turf/simulated/floor/outdoors/beach/sand/desert, -/area/tradeport/cyndishow) -"rK" = ( -/obj/machinery/camera{ - dir = 8 - }, -/obj/machinery/vending/fitness, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"rM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"rO" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -25 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"rP" = ( -/turf/simulated/floor/outdoors/dirtlight, -/area/tradeport/cyndishow) -"rQ" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"rR" = ( -/obj/structure/closet/walllocker/autolok_wall{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"rS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"rV" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"rX" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - req_one_access = list(160) - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"rY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"sb" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump4c"; - name = "Nebula Pump Controller"; - pixel_x = -25 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"sc" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/space, -/area/tradeport/spine) -"sd" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/eastright{ - name = "rare item display case"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/item/powersink, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"se" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/obj/machinery/light/small/flicker{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"sf" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/airless, -/area/space) -"sh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"sk" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/rack/shelf/steel, -/obj/item/reagent_containers/food/drinks/teapot{ - desc = "An elegant teapot. It simply oozes class. This one looks especially valuable."; - name = "antique teapot" - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"sn" = ( -/obj/machinery/light, -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"sq" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"sr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"sv" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"sz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"sA" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/structure/table/bench/wooden, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"sB" = ( -/obj/machinery/light, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"sC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tradeport) -"sD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"sI" = ( -/obj/structure/bed/chair/sofa/black/left{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/landmark{ - name = "Trader" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"sJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"sL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"sN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"sP" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/facility) -"sR" = ( -/obj/machinery/suit_storage_unit/syndicate, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"sS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"sU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/tradeport) -"sW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"sX" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/space) -"sY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"sZ" = ( -/obj/structure/loot_pile/surface/drone, -/turf/simulated/mineral/floor/vacuum, -/area/space) -"tb" = ( -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"td" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport) -"te" = ( -/obj/machinery/door/airlock/external/glass{ - req_access = list(160) - }, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/access_button{ - command = "cycle_ext"; - pixel_x = -10; - pixel_y = 25; - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tradeport/engineering) -"tf" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"tg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/tradeport/commhall) -"tk" = ( -/obj/structure/table/glass, -/obj/item/deck/cards{ - pixel_x = -12 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"tl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"tn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"to" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/space) -"tp" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"tr" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"tt" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"tu" = ( -/turf/simulated/wall, -/area/tradeport/commons) -"tv" = ( -/obj/structure/table/rack/steel, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd/loaded, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"tx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"tz" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"tD" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"tF" = ( -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/structure/table/rack/shelf/steel, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"tH" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"tI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/debris/cleanable/flour, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"tL" = ( -/obj/machinery/button/remote/blast_door{ - id = "safari-load"; - pixel_x = -5; - pixel_y = 27 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "safari-load"; - pixel_x = 5; - pixel_y = 27 - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"tM" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump1a"; - landmark_tag = "nebula_pad_1a"; - name = "Nebula Pad 1a" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"tO" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/tradeport/dock) -"tR" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"tS" = ( -/obj/structure/flora/tree/jungle, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"tU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"tW" = ( -/turf/simulated/wall, -/area/tradeport/cafeteria) -"tX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"tY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"ua" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/inflatable, -/turf/simulated/floor/airless, -/area/tradeport/expansion) -"ub" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"uc" = ( -/obj/structure/table/hardwoodtable, -/obj/item/toy/figure/captain, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"uf" = ( -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"ui" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"uj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"ul" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"un" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"up" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"uq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"ur" = ( -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"uu" = ( -/obj/item/stool/padded, -/turf/simulated/floor/wood, -/area/tradeport) -"uw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"ux" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"uy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"uz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/sign/warning{ - pixel_x = 31; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"uA" = ( -/obj/structure/closet{ - icon_closed = "cabinet_closed"; - icon_opened = "cabinet_open"; - icon_state = "cabinet_closed" - }, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"uB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/purple, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"uD" = ( -/obj/structure/window/reinforced/tinted/frosted, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"uF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes, -/obj/effect/floor_decal/grass_edge{ - dir = 8 - }, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"uG" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/mineral/floor/vacuum, -/area/space) -"uI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"uJ" = ( -/obj/structure/table/steel_reinforced, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/debris/cleanable/cobweb, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"uL" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/floodlight{ - anchored = 1 - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/tradeport/expansion) -"uN" = ( -/obj/structure/railing, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"uP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/syndicate, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"uQ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"uR" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/effect/gibspawner/human, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"uS" = ( -/obj/structure/closet/crate/secure/engineering{ - req_access = list(160) - }, -/obj/random/tool/power, -/obj/random/tool/power, -/obj/random/tool/power, -/obj/item/cell/device/weapon/recharge/alien, -/obj/random/tool/alien, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"uU" = ( -/obj/structure/cable/yellow{ - 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/old_tile/beige, -/area/tradeport/commhall) -"uV" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"uW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"uZ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northright{ - name = "rare item display case"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/item/gun/energy/alien, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"va" = ( -/obj/item/radio/intercom/trader{ - dir = 1; - pixel_y = 25 - }, -/obj/structure/closet/crate/bin{ - anchored = 1; - pixel_x = 8; - pixel_y = 10 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"vb" = ( -/obj/machinery/light, -/obj/structure/closet/wardrobe/pjs, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"vc" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndi) -"vf" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"vg" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "safari"; - name = "Safari Clerk Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/item/paper{ - info = "Hey Jack, make sure the new guy knows that he's supposed to charge before he lets people go into the back for the 'safari'. General price is 5 thalers. If they want to buy a Grub, make sure to charge them for the crate too."; - name = "Admissions Guidelines" - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"vi" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"vj" = ( -/obj/machinery/light, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"vk" = ( -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_access = list(160); - req_one_access = null - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"vl" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 26 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"vm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"vn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"vo" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/debris/cleanable/vomit, -/obj/structure/closet/medical_wall{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"vp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/commons) -"vq" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump2a"; - landmark_tag = "nebula_pad_2a"; - name = "Nebula Pad 2a" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"vr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "storeshutter3" - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"vt" = ( -/obj/machinery/atmospherics/component/unary/outlet_injector{ - dir = 4; - frequency = 1445; - id = "burn_in"; - volume_rate = 700 - }, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/atmospherics) -"vv" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/silencer, -/obj/item/silencer, -/obj/item/silencer, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"vw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"vy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Custodial Supplies"; - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/atmospherics) -"vz" = ( -/obj/machinery/vending/cigarette{ - name = "Cigarette machine"; - prices = list(); - products = list(/obj/item/storage/fancy/cigarettes = 10, /obj/item/storage/box/matches = 10, /obj/item/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"vA" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/siphon/on{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airmix, -/area/tradeport/atmospherics) -"vC" = ( -/obj/structure/closet/jcloset, -/obj/random/soap, -/obj/item/storage/bag/trash, -/obj/item/mop, -/obj/item/hardsuit_module/cleaner_launcher, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"vD" = ( -/obj/structure/bed/chair/sofa/black{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"vF" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "rare item display case"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/item/gun/energy/gun/fluff/dominator, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"vG" = ( -/obj/structure/closet{ - name = "custodial" - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"vH" = ( -/obj/machinery/vending/blood, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"vL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndishow) -"vP" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/plating, -/area/tradeport/pads) -"vR" = ( -/mob/living/simple_mob/vore/redpanda, -/turf/simulated/floor/outdoors/beach/sand/desert/indoors, -/area/tradeport/safarizoo) -"vU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"vV" = ( -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) -"vW" = ( -/turf/simulated/mineral/floor/vacuum, -/area/space) -"vX" = ( -/obj/structure/lightpost, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"vY" = ( -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/airlock/command{ - name = "Managers Office"; - req_access = list(160); - req_one_access = null - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"wa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/door/airlock/command{ - id_tag = "dormmanager"; - name = "Manager's Dorm"; - req_access = list(160); - req_one_access = null - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"wb" = ( -/obj/item/storage/fancy/cigar/taj/premium, -/obj/item/storage/fancy/cigar/havana, -/obj/item/storage/fancy/cigar/havana, -/obj/structure/closet/crate/secure{ - name = "cigars crate"; - req_access = list(160) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"wd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Nebula Gas - Dormitories"; - req_access = list(160) - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/cafeteria) -"wg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"wh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "trade"; - name = "Shop Shutters"; - pixel_x = -4; - pixel_y = -1; - req_access = list(160) - }, -/obj/item/radio/intercom/trader{ - dir = 1; - pixel_y = 25 - }, -/obj/machinery/button/holosign{ - id = "tradersign"; - pixel_x = 6 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"wj" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"wn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"wo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"wq" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cyndi"; - name = "C&K Shutters" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndi) -"wr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"wx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"wz" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/door/airlock/external/glass{ - icon_state = "door_locked"; - id_tag = "expansion_wing"; - locked = 1; - name = "Wing Expansion - Under Construction" - }, -/turf/simulated/floor/plating, -/area/tradeport/commhall) -"wA" = ( -/obj/structure/table/alien, -/obj/item/reagent_containers/food/drinks/bottle/gin{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/storage/fancy/cigarettes/menthols{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/item/flame/lighter/zippo/royal, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"wB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"wC" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump4c"; - landmark_tag = "nebula_pad_4c"; - name = "Nebula Pad 4c" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"wD" = ( -/obj/structure/closet/crate/secure{ - name = "materials crate"; - req_access = list(160) - }, -/obj/item/stack/material/gold, -/obj/item/stack/material/gold, -/obj/item/stack/material/gold, -/obj/item/stack/material/gold, -/obj/item/stack/material/gold, -/obj/item/stack/material/silver, -/obj/item/stack/material/silver, -/obj/item/stack/material/silver, -/obj/item/stack/material/silver, -/obj/item/stack/material/silver, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/phoron, -/obj/item/stack/material/uranium, -/obj/item/stack/material/uranium, -/obj/item/stack/material/uranium, -/obj/item/stack/material/uranium, -/obj/item/stack/material/uranium, -/obj/item/stack/material/diamond, -/obj/item/stack/material/diamond, -/obj/item/stack/material/diamond, -/obj/item/stack/material/diamond, -/obj/item/stack/material/diamond, -/obj/item/stack/material/mhydrogen, -/obj/item/stack/material/mhydrogen, -/obj/item/stack/material/mhydrogen, -/obj/item/stack/material/mhydrogen, -/obj/item/stack/material/mhydrogen, -/obj/fiftyspawner/plasteel, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"wE" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "tradeportshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/shuttle/plating, -/area/shuttle/trade_ship/general) -"wF" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"wH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"wK" = ( -/obj/machinery/vending/loadout/costume, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"wL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/airlock/silver{ - id_tag = "tradedorm2"; - name = "Dorm 2" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"wN" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"wP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"wQ" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"wR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"wS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"wT" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/engineering) -"wV" = ( -/turf/simulated/mineral/vacuum, -/area/tradeport/exterior) -"wW" = ( -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"wY" = ( -/obj/machinery/camera, -/obj/item/radio/intercom/trader{ - dir = 1; - pixel_y = 25 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"wZ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"xa" = ( -/obj/structure/transit_tube, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"xd" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/closet/crate/secure/science{ - name = "NIF crate"; - req_access = list(160) - }, -/obj/item/nif, -/obj/item/nifrepairer, -/obj/item/nifrepairer, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"xe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/airlock/silver{ - id_tag = "tradedorm1"; - name = "Dorm 1" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"xg" = ( -/obj/machinery/light{ - dir = 8; - light_range = 12 - }, -/obj/machinery/vending/sovietsoda, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"xk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"xm" = ( -/obj/machinery/door/firedoor{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"xo" = ( -/obj/structure/flora/pumpkin/carved/girly, -/obj/effect/floor_decal/grass_edge, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"xp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"xq" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/extraction_pack, -/obj/item/extraction_pack, -/obj/item/extraction_pack, -/obj/item/extraction_pack, -/obj/item/extraction_pack, -/obj/item/extraction_pack, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"xs" = ( -/obj/machinery/camera{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"xt" = ( -/obj/structure/fence, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"xu" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/pipe/tank/air, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport) -"xw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"xy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"xz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"xA" = ( -/obj/structure/lattice, -/obj/structure/railing{ - dir = 1 - }, -/turf/space, -/area/space) -"xB" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/component/binary/pump/high_power/on{ - dir = 4; - frequency = 8018; - id = "pumptwo"; - name = "Pump Two"; - target_pressure = 15000 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"xC" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport/facility) -"xD" = ( -/obj/machinery/air_alarm/alarms_hidden{ - pixel_y = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"xE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"xF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"xG" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"xK" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/secure/loot, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"xL" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "tradebridgeshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/shuttle/plating, -/area/shuttle/trade_ship/general) -"xN" = ( -/obj/machinery/door/airlock/external/glass{ - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/access_button{ - command = "cycle_ext"; - frequency = 1380; - master_tag = "tradeport_hangar_dock"; - pixel_x = 25; - pixel_y = -5 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"xO" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"xP" = ( -/obj/machinery/appliance/cooker/oven, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"xR" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"xT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"xU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"xV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"xY" = ( -/obj/structure/loot_pile/surface/drone, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/exterior) -"xZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(160); - req_one_access = null - }, -/turf/simulated/floor/plating, -/area/tradeport) -"ya" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"yb" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade_ship/general) -"yc" = ( -/obj/structure/closet/hydrant{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"ye" = ( -/obj/machinery/vending/loadout/uniform, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"yf" = ( -/obj/item/storage/secure/safe{ - pixel_x = 34; - pixel_y = 3 - }, -/obj/machinery/button/windowtint/multitint{ - id = "traderportdoor"; - pixel_x = -8; - pixel_y = 23 - }, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"yg" = ( -/obj/spawner/window/low_wall/full/firelocks/nogrille, -/turf/simulated/floor/plating, -/area/tradeport/commons) -"yh" = ( -/obj/machinery/door/window/northright{ - name = "Cargo Hold"; - req_access = list(160) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"yi" = ( -/obj/machinery/computer/security/telescreen, -/turf/simulated/wall/r_wall, -/area/tradeport/commons) -"yl" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/tradeport) -"yo" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"yp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"yq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/power/smes/buildable{ - charge = 1.5e+007; - cur_coils = 3; - input_attempt = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport/engineering) -"yr" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_pump, -/turf/simulated/floor/plating, -/area/tradeport/expansion) -"yt" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"yv" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"yy" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 4; - name = "Nebula Commercial District" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/commhall) -"yB" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"yC" = ( -/turf/simulated/wall, -/area/tradeport/medical) -"yD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"yG" = ( -/obj/item/stool/padded, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tradeport) -"yH" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/trade_ship/cockpit) -"yI" = ( -/obj/item/stool/padded, -/obj/item/toy/plushie/squid/blue, -/obj/landmark/spawnpoint/job/trader, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/machinery/fire_alarm/west_mount{ - pixel_x = -24 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"yJ" = ( -/obj/structure/table/marble, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = 27 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_y = 3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = -5 - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"yK" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/computer/security/telescreen{ - pixel_y = 29 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"yL" = ( -/obj/machinery/light, -/obj/structure/undies_wardrobe, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"yM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"yO" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"yQ" = ( -/obj/machinery/button/remote/blast_door{ - id = "tradestarshutters"; - name = "remote shutter control"; - pixel_x = 30; - req_access = list(160) - }, -/obj/machinery/button/windowtint/multitint{ - id = "traderstardoor"; - pixel_x = -8; - pixel_y = -23 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"yS" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/wood, -/obj/fiftyspawner/wood, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"yT" = ( -/obj/structure/undies_wardrobe, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"yV" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/space) -"yW" = ( -/obj/structure/closet/crate/solar, -/obj/item/stack/cable_coil/green, -/obj/item/stack/cable_coil/green, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"yX" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/beach/sand/desert/indoors, -/area/tradeport/safarizoo) -"yZ" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"zb" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cyndi"; - name = "C&K Shutters" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndi) -"ze" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"zf" = ( -/obj/machinery/camera{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndi) -"zh" = ( -/obj/machinery/vending/sovietsoda, -/obj/item/modular_computer/telescreen/preset{ - pixel_y = 23; - text = "Text" - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"zi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"zk" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/vending/loadout/loadout_misc, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"zl" = ( -/obj/structure/table/hardwoodtable, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"zn" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"zo" = ( -/obj/structure/bed/chair/sofa/right, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/machinery/air_alarm/alarms_hidden/north_mount{ - name = "north bump"; - pixel_y = 28; - req_access = list(160) - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport) -"zq" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light, -/obj/random/multiple/large_corp_crate, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"zr" = ( -/obj/structure/sign/atmos_plasma{ - desc = "WARNING! Plasma flow tube nearby."; - name = "Pump Five" - }, -/turf/simulated/wall/r_wall, -/area/tradeport/pads) -"zt" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/rack/shelf/steel, -/obj/item/pizzabox/pineapple, -/obj/item/pizzabox/pineapple, -/obj/item/pizzabox/pineapple, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"zu" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/flora/pottedplant/thinbush{ - pixel_x = 10 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"zv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"zx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - name = "rare item display case"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/item/chameleon, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"zz" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/camera{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"zC" = ( -/obj/structure/table/hardwoodtable, -/obj/item/pen, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"zD" = ( -/obj/structure/window/reinforced, -/obj/item/nullrod/egyptian{ - desc = "This golden scepter was once the object of many fanciful tales. Old Earth archaeologists long believed it to be a myth. It was discovered by scavenger teams after the Final War, and has changed hands many times since."; - name = "The Staff of Ahten-Ka" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/marble, -/turf/simulated/floor/outdoors/beach/sand/desert, -/area/tradeport/cyndishow) -"zE" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "trade-ship-secure"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"zG" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"zK" = ( -/obj/machinery/vending/hydronutrients, -/turf/simulated/floor/grass, -/area/tradeport) -"zL" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"zM" = ( -/obj/machinery/appliance/cooker/oven, -/obj/machinery/air_alarm/alarms_hidden{ - pixel_y = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"zP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "tradeport_hangar_docker"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "tradeport_hangar_docker_pump" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/map_helper/airlock/sensor/chamber_sensor, -/obj/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"zQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"zR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"zS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"zY" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Aa" = ( -/obj/structure/flora/pumpkin/carved, -/obj/effect/floor_decal/grass_edge, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"Ac" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"Ad" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"Ae" = ( -/obj/machinery/camera{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump4d"; - name = "Nebula Pump Controller"; - pixel_x = 25 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"Ah" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/toolbox/syndicate, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/commons) -"Am" = ( -/obj/machinery/vending/boozeomat{ - req_access = null - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"Ao" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/structure/cable/yellow, -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"Ap" = ( -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"At" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/poster{ - pixel_x = 32 - }, -/obj/item/reagent_containers/food/snacks/candy_corn, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Av" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"Aw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"Ax" = ( -/obj/structure/poster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"Ay" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "storeshutter2"; - pixel_x = -23; - req_access = list(160) - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"AB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"AD" = ( -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"AE" = ( -/obj/machinery/atmospherics/component/binary/pump/high_power/on{ - frequency = 8018; - id = "emergencycut"; - name = "emergency cut-off pump"; - target_pressure = 15000 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"AG" = ( -/obj/machinery/fire_alarm/west_mount{ - pixel_x = -26 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"AI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"AK" = ( -/obj/effect/debris/cleanable/blood, -/obj/item/bone/skull, -/turf/simulated/floor/outdoors/ice, -/area/tradeport/cyndishow) -"AL" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"AO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"AQ" = ( -/obj/machinery/optable, -/obj/machinery/oxygen_pump/anesthetic{ - pixel_y = 29 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/tradeport/medical) -"AT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "storeshutter1" - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/facility) -"AU" = ( -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/door/airlock/glass_external{ - name = "Nebula Gas - Employees Only" - }, -/obj/machinery/access_button{ - command = "cycle_int"; - frequency = 1380; - pixel_x = -6; - pixel_y = 25; - req_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"AW" = ( -/obj/structure/inflatable, -/turf/simulated/floor/airless, -/area/tradeport/expansion) -"AX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"Ba" = ( -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"Bc" = ( -/obj/machinery/door/firedoor{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Bd" = ( -/obj/effect/gibspawner/human, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"Bg" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/airless, -/area/space) -"Bh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 4; - name = "Nebula Gas - Engineering"; - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/engineering) -"Bi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/grass, -/area/tradeport) -"Bj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"Bl" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 5 - }, -/obj/item/storage/firstaid/o2{ - layer = 2.8; - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/masks, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/fire{ - layer = 2.9; - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = -2 - }, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/structure/closet/medical_wall{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Bn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"Bo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"Bs" = ( -/obj/machinery/vending/loadout/clothing, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"Bt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"Bu" = ( -/obj/structure/table/steel_reinforced, -/obj/item/integrated_circuit_printer/upgraded, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Bv" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump4b"; - landmark_tag = "nebula_pad_4b"; - name = "Nebula Pad 4b" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Bx" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/lightpost, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"By" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"Bz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tradeport) -"BA" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donkpockets, -/turf/simulated/floor/carpet, -/area/shuttle/trade_ship/general) -"BB" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"BC" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "ck_show"; - name = "Showroom Security"; - pixel_x = -27 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndi) -"BF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"BG" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"BJ" = ( -/obj/structure/sign/atmos_plasma{ - desc = "WARNING! Plasma flow tube nearby."; - name = "Pump One" - }, -/turf/simulated/wall/r_wall, -/area/tradeport/pads) -"BK" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"BL" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"BM" = ( -/obj/structure/grille, -/obj/structure/window/phoronreinforced/full, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"BP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/recharger, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"BR" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/largecrate/animal/cat, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"BS" = ( -/obj/spawner/window/low_wall/full/firelocks/nogrille, -/turf/simulated/floor/plating, -/area/tradeport/cafeteria) -"BT" = ( -/obj/machinery/washing_machine, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"BV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"BX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/door/airlock{ - name = "Custodial Supplies"; - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/atmospherics) -"BY" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/marble, -/obj/item/gun/ballistic/shotgun/pump/JSDF{ - desc = "The Iceman cometh."; - name = "mercenary tactical shotgun" - }, -/turf/simulated/floor/snow, -/area/tradeport/cyndishow) -"Ca" = ( -/obj/machinery/vending/loadout/overwear, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"Cb" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"Cc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Cd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Ce" = ( -/obj/structure/fuel_port{ - dir = 4; - pixel_x = 29 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Cf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Cg" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/material/twohanded/baseballbat/penbat, -/obj/machinery/door/window/eastright{ - name = "rare item display case"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/machinery/camera{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport/cyndishow) -"Ch" = ( -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Ci" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "spine_outbound"; - name = "outbound conveyor"; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/air_alarm/alarms_hidden{ - pixel_y = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"Cj" = ( -/obj/spawner/window/low_wall/full/firelocks/nogrille, -/turf/simulated/floor/plating, -/area/tradeport) -"Ck" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/bench/wooden, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"Cl" = ( -/obj/machinery/vending/loadout/uniform, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"Cn" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"Cp" = ( -/turf/simulated/mineral/vacuum, -/area/tradeport/pads) -"Cr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"Ct" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"Cw" = ( -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/door/airlock/glass_external{ - name = "Nebula Gas - Employees Only" - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Cx" = ( -/obj/structure/sign/atmos_plasma{ - desc = "WARNING! Plasma flow tube nearby."; - name = "Pump Three" - }, -/turf/simulated/wall/r_wall, -/area/tradeport/pads) -"Cz" = ( -/obj/machinery/vending/loadout/overwear, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"CB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"CE" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"CI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"CK" = ( -/obj/machinery/air_alarm/alarms_hidden/north_mount{ - name = "north bump"; - pixel_y = 28; - req_access = list(160) - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"CL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"CM" = ( -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tradeport/commons) -"CO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/landmark/spawnpoint/job/trader, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"CR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"CU" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/smartfridge/seeds, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"CW" = ( -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"Da" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/cafeteria) -"Db" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"Dc" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"Dd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport) -"De" = ( -/obj/machinery/light, -/obj/structure/table/standard, -/obj/item/soap, -/obj/item/towel{ - color = "#0000FF" - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"Df" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"Dg" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/secure/loot, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Dh" = ( -/turf/space, -/area/space) -"Di" = ( -/obj/vehicle_old/train/engine, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"Dl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"Dm" = ( -/obj/machinery/light/small, -/obj/structure/flora/pumpkin, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"Dq" = ( -/obj/machinery/camera{ - dir = 1 - }, -/obj/machinery/vending/loadout/uniform, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Dr" = ( -/obj/structure/flora/pottedplant/tropical{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"Ds" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/washing_machine, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"Dt" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"Du" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/scale, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"Dv" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"Dw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/air_alarm/alarms_hidden{ - pixel_y = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"DA" = ( -/obj/machinery/door/airlock/silver{ - name = "Sleeping" - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"DB" = ( -/obj/structure/cult/pylon, -/turf/simulated/floor/outdoors/beach/sand/desert, -/area/tradeport/cyndishow) -"DC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/poster{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"DD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"DE" = ( -/obj/structure/window/reinforced, -/obj/structure/cult/pylon, -/turf/simulated/floor/outdoors/beach/sand/desert, -/area/tradeport/cyndishow) -"DF" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/tradeport/expansion) -"DG" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/hos, -/obj/structure/poster{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"DK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"DL" = ( -/obj/machinery/smartfridge, -/turf/simulated/floor/grass, -/area/tradeport) -"DM" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"DN" = ( -/mob/living/simple_mob/vore/redpanda, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"DQ" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"DR" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"DU" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/space) -"DV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"DX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"DY" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/smes/buildable{ - charge = 1.5e+007; - cur_coils = 3; - input_attempt = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport/engineering) -"DZ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Ea" = ( -/obj/machinery/vending/boozeomat{ - req_access = null - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Eb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 4; - pixel_x = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Ec" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/debris/cleanable/dirt, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"Ee" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade_ship/general) -"Ef" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Eg" = ( -/obj/machinery/vending/giftvendor, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Eh" = ( -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/exterior) -"Ei" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/solar, -/turf/simulated/floor/airless, -/area/space) -"Ej" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"Ek" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/eastright{ - name = "rare item display case"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/item/stack/telecrystal{ - amount = 20 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"El" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"Em" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Eo" = ( -/obj/machinery/vending/loadout/gadget, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"Eq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/glass_external{ - name = "Ship Hatch" - }, -/obj/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Et" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/sign/greencross{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Eu" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"Ev" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"Ey" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/phoron{ - amount = 25 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"Ez" = ( -/obj/machinery/door/airlock/glass{ - name = "Crew Cryogenics" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/commons) -"EB" = ( -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"ED" = ( -/turf/simulated/floor/plating, -/area/tradeport) -"EE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"EF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"EH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"EI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/kiddieplaque{ - desc = "A plaque commemorating the construction of the cargo ship Beruang."; - name = "Beruang"; - pixel_x = 32 - }, -/obj/machinery/holopad/ship/starts_inactive, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/cockpit) -"EL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/centcom{ - desc = "For the discerning client."; - name = "C&K Showroom"; - req_access = list(160); - req_one_access = null - }, -/obj/machinery/door/blast/regular{ - id = "ck_show"; - name = "Showroom Blast Door" - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndishow) -"EM" = ( -/obj/structure/handrail{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"EP" = ( -/obj/machinery/computer/ship/helm{ - dir = 4 - }, -/obj/item/gps/internal/base{ - desc = "A tracking beacon embedded in the shuttle systems, to help customers find where the best deals are."; - gps_tag = "BERU"; - name = "trade transport beacon" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"ER" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump5a"; - landmark_tag = "nebula_pad5a"; - name = "Nebula Pad 5a" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"ES" = ( -/obj/structure/table/woodentable, -/obj/item/deck/cards, -/turf/simulated/floor/plating, -/area/tradeport/facility) -"ET" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/space) -"EU" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/floor/airless, -/area/space) -"EX" = ( -/obj/machinery/light, -/obj/structure/flora/pottedplant/drooping, -/obj/machinery/fire_alarm/west_mount{ - pixel_x = -26 - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"Fa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/mob/living/bot/cleanbot/edCLN{ - desc = "A large cleaning robot. It's nametag reads 'Jim'."; - move_speed = 6; - name = "Jim" - }, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"Fb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"Fc" = ( -/obj/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/airlock_sensor{ - pixel_y = -25 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "trade_solars"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/map_helper/airlock/atmos/chamber_pump, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "trade_solars" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport/engineering) -"Fd" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/rd, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"Fg" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(160); - req_one_access = null - }, -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/tradeport/dock) -"Fj" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump3b"; - landmark_tag = "nebula_pad_3b"; - name = "Nebula Pad 3b" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Fl" = ( -/obj/machinery/computer/arcade/battle, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"Fm" = ( -/obj/machinery/gibber, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"Fn" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"Fo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade_ship/general) -"Fr" = ( -/obj/structure/table/steel_reinforced, -/obj/item/cell/hyper, -/obj/item/cell/high, -/obj/item/cell/high, -/obj/item/storage/toolbox/syndicate{ - pixel_y = 11 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Fs" = ( -/turf/simulated/wall/sandstonediamond, -/area/tradeport/cyndishow) -"Fu" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/component/binary/pump/high_power/on{ - dir = 8; - frequency = 8018; - id = "pumpfive"; - name = "Pump Five"; - target_pressure = 15000 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"Fv" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Fy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Fz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"FA" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump6b"; - name = "Nebula Pump Controller"; - pixel_x = -25 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"FC" = ( -/obj/structure/table/glass, -/obj/item/radio/intercom/trader{ - dir = 1; - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/toy/plushie/bear_space, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"FD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/trade_ship/general) -"FE" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 4; - name = "Nebula Commercial District" - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"FG" = ( -/obj/machinery/light, -/turf/space, -/area/space) -"FH" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/bench/wooden, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"FL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/vending/loadout/accessory, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"FM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - frequency = 8018; - id_tag = "trade_space_lock_pump" - }, -/obj/machinery/airlock_sensor{ - frequency = 8018; - id_tag = "trade_space_lock"; - pixel_x = 25 - }, -/obj/map_helper/airlock/sensor/chamber_sensor, -/obj/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"FN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/tradeport/pads) -"FO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"FQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"FR" = ( -/obj/item/clothing/under/syndicate, -/obj/item/clothing/under/syndicate, -/obj/item/clothing/under/syndicate/skirt_pleated, -/obj/item/clothing/under/syndicate/skirt_pleated, -/obj/item/clothing/shoes/boots/combat, -/obj/item/clothing/shoes/boots/combat, -/obj/structure/closet, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"FS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"FT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/tradeport) -"FU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"FW" = ( -/obj/machinery/camera{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"FY" = ( -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Ga" = ( -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tradeport/safarizoo) -"Gb" = ( -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"Gd" = ( -/obj/structure/poster{ - pixel_y = -32 - }, -/obj/structure/table/standard, -/obj/item/duct_tape_roll{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/duct_tape_roll{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"Ge" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"Gi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"Gj" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"Gk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "tradedorm2"; - name = "Dorm 2 Lock"; - pixel_x = -26; - specialfunctions = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"Gl" = ( -/obj/machinery/chemical_dispenser/catering/bar_soft{ - dir = 4 - }, -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/wood, -/area/tradeport) -"Go" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"Gp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"Gq" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Gr" = ( -/obj/vehicle_old/train/trolley, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"Gs" = ( -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"Gu" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"Gv" = ( -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Gw" = ( -/obj/machinery/light, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"Gx" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"Gz" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - req_one_access = list(160) - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"GA" = ( -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/door/window/westleft{ - req_access = list(160) - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"GB" = ( -/obj/machinery/suit_cycler/syndicate{ - locked = 0; - req_access = list(160) - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"GC" = ( -/obj/machinery/vending/giftvendor, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"GD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/external/glass{ - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/access_button{ - command = "cycle_int"; - frequency = 1380; - master_tag = "tradeport_hangar_dock"; - pixel_x = -25; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"GF" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"GI" = ( -/obj/machinery/light{ - dir = 8; - light_range = 12 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"GJ" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/grass, -/area/tradeport) -"GL" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump3b"; - name = "Nebula Pump Controller"; - pixel_x = 25 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"GM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"GN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"GO" = ( -/obj/machinery/computer/security/telescreen, -/turf/simulated/wall, -/area/tradeport/commons) -"GP" = ( -/obj/structure/bed/chair, -/obj/landmark/spawnpoint/job/trader, -/obj/machinery/air_alarm/alarms_hidden{ - pixel_y = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"GR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"GS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor, -/area/tradeport/pads) -"GT" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"GV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"GW" = ( -/obj/machinery/holosign/bar{ - id = "tradersign" - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"GY" = ( -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"GZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"Hb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"Hc" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"He" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/plaque{ - desc = "This diorama features soil and produce cultivated from the very place of the infamous massacre. The scarecrow came with the purchase for free, and is a guest favorite for photographs."; - name = "Durian V Massacre" - }, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"Hf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade_ship/general) -"Hn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"Ho" = ( -/obj/machinery/vending/loadout/gadget, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"Hq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"Hr" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"Hs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/arcade/battle, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"Ht" = ( -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"Hx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Hy" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"Hz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/diagonal, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"HA" = ( -/obj/machinery/holosign/bar{ - id = "cyndisign" - }, -/turf/simulated/wall/r_wall, -/area/tradeport/cyndi) -"HB" = ( -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"HF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"HG" = ( -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"HI" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"HJ" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"HK" = ( -/obj/machinery/photocopier, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/shuttle/trade_ship/general) -"HN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/snow, -/area/tradeport/cyndishow) -"HP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"HQ" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/backpack/rig{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/storage/backpack/rig{ - pixel_x = -7 - }, -/obj/item/universal_translator/ear/adaptive{ - pixel_x = 11; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"HT" = ( -/obj/machinery/mech_recharger, -/obj/vehicle/sealed/mecha/working/ripley/mining, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"HU" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"HX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"HZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/space, -/area/space) -"Ib" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"Ic" = ( -/obj/machinery/door/airlock/external/glass{ - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"If" = ( -/obj/item/clothing/head/bearpelt, -/obj/item/clothing/head/bowler, -/obj/item/clothing/head/caphat/cap, -/obj/item/clothing/head/beaverhat, -/obj/item/clothing/head/beret/centcom, -/obj/item/clothing/head/beret/sec, -/obj/item/clothing/head/collectable/kitty, -/obj/item/clothing/head/collectable/kitty, -/obj/item/clothing/head/collectable/kitty, -/obj/item/clothing/head/collectable/rabbitears, -/obj/item/clothing/head/collectable/rabbitears, -/obj/item/clothing/head/collectable/rabbitears, -/obj/item/clothing/head/collectable/petehat, -/obj/item/clothing/head/collectable/pirate, -/obj/item/clothing/head/collectable/wizard, -/obj/item/clothing/head/collectable/xenom, -/obj/item/clothing/head/cowboy_hat, -/obj/item/clothing/head/pin/flower/violet, -/obj/item/clothing/head/pin/flower/blue, -/obj/item/clothing/head/pin/flower/orange, -/obj/item/clothing/head/pin/flower/pink, -/obj/item/clothing/head/justice, -/obj/item/clothing/head/justice/blue, -/obj/item/clothing/head/justice/green, -/obj/item/clothing/head/justice/pink, -/obj/item/clothing/head/justice/yellow, -/obj/item/clothing/head/philosopher_wig, -/obj/item/clothing/head/plaguedoctorhat, -/obj/item/clothing/head/xenos, -/obj/structure/closet, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Ig" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"Ii" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/cap/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tradeport/expansion) -"Ik" = ( -/obj/machinery/door/window/westleft{ - dir = 2 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "safari"; - name = "Safari Clerk Shutters" - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"Im" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"In" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"Iq" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/door/airlock/glass{ - name = "Restrooms" - }, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"Ir" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"It" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/atmospherics) -"Iu" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/shuttle/trade_ship/general) -"Iv" = ( -/obj/effect/debris/cleanable/blood/drip, -/turf/simulated/floor/outdoors/ice, -/area/tradeport/cyndishow) -"Iw" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"Iz" = ( -/obj/machinery/atmospherics/component/unary/engine{ - dir = 8 - }, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/trade_ship/general) -"IA" = ( -/obj/effect/mist, -/turf/simulated/floor/tiled/asteroid_steel, -/area/tradeport/cyndishow) -"IB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"IC" = ( -/obj/machinery/power/terminal, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"IE" = ( -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "storeshutter3" - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"IF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"IH" = ( -/obj/machinery/camera, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"II" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"IJ" = ( -/obj/structure/closet/crate/secure/weapon{ - req_access = list(160) - }, -/obj/item/gun/energy/civtas, -/obj/item/gun/energy/civtas, -/obj/item/gun/energy/civtas, -/obj/random/energy, -/obj/random/handgun, -/obj/random/weapon/guarenteed, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"IK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"IM" = ( -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"IN" = ( -/obj/structure/table/woodentable, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/pen{ - pixel_y = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/shuttle/trade_ship/general) -"IO" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/bush, -/turf/simulated/floor/snow, -/area/tradeport/cyndishow) -"IP" = ( -/obj/machinery/iv_drip, -/obj/structure/closet/walllocker/autolok_wall{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"IQ" = ( -/obj/structure/bed/double/padded, -/obj/item/bedsheet/captaindouble, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 25 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"IS" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/space/basic, -/area/space) -"IT" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"IU" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/fire_alarm/west_mount{ - pixel_x = -26 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"IX" = ( -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Jb" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/cyndishow) -"Jc" = ( -/obj/structure/table/marble, -/obj/machinery/microwave, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"Je" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/snow, -/area/tradeport/cyndishow) -"Jf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_x = -27 - }, -/obj/landmark/spawnpoint/job/trader, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"Jg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/component/binary/pump/high_power/on{ - dir = 4; - frequency = 8018; - id = "pumpsix"; - name = "Pump Six"; - target_pressure = 15000 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"Ji" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cyndi"; - name = "C&K Shutters" - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndi) -"Jj" = ( -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"Jk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = null; - frequency = 1380; - id_tag = "tradeport_hangar_dock"; - pixel_x = -25 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Jm" = ( -/obj/structure/cable/yellow, -/obj/machinery/vending/nifsoft_shop{ - dir = 8 - }, -/obj/machinery/power/apc/alarms_hidden/south_mount{ - cell_type = /obj/item/cell/super; - req_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Jn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"Jo" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/tradeport) -"Jt" = ( -/obj/structure/sign/atmos_plasma{ - desc = "WARNING! Plasma flow tube nearby."; - name = "Pump Four" - }, -/turf/simulated/wall/r_wall, -/area/tradeport/pads) -"Jv" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"Jw" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump6a"; - landmark_tag = "nebula_pad6a"; - name = "Nebula Pad 6a" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Jy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"JA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"JD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tradeport) -"JG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/tradeport/expansion) -"JI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/obj/structure/cable/yellow{ - dir = 4; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"JN" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/warning, -/obj/item/kit/paint/honker, -/obj/random/paintkit/durand, -/obj/random/paintkit/gygax, -/obj/random/paintkit/gygax, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"JO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"JT" = ( -/obj/effect/debris/cleanable/molten_item, -/turf/simulated/floor/plating, -/area/tradeport) -"JU" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"JW" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/catering/bar_alc{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"JX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"Kb" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/tradeport/pads) -"Kc" = ( -/obj/machinery/smartfridge/chemistry, -/obj/effect/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"Ke" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"Kf" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump6b"; - landmark_tag = "nebula_pad6b"; - name = "Nebula Pad 6b" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Ki" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"Kj" = ( -/turf/space, -/area/tradeport/expansion) -"Kk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/plastic, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"Kn" = ( -/obj/structure/table/hardwoodtable, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -6 - }, -/obj/item/reagent_containers/glass/rag{ - pixel_x = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 9; - pixel_y = 9 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"Kp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/tradeport/expansion) -"Ks" = ( -/obj/machinery/lathe/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - name = "Unlocked Autolathe" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Ku" = ( -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Kv" = ( -/obj/item/stool/padded, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"Kx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "storeshutter3" - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"Ky" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"Kz" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"KA" = ( -/obj/structure/closet/crate/solar, -/obj/item/stack/cable_coil/green, -/obj/item/stack/cable_coil/green, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"KE" = ( -/obj/machinery/lathe/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - name = "Unlocked Autolathe" - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"KF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"KG" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"KH" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"KI" = ( -/obj/machinery/camera{ - dir = 4 - }, -/obj/machinery/vending/sovietsoda{ - contraband = list(/obj/item/reagent_containers/food/drinks/cans/crystalgibb = 20); - desc = "An old sweet water vending machine. It looks like someone crossed out the D and replaced it with an F."; - name = "BOFA"; - products = list(/obj/item/reagent_containers/food/drinks/cans/thirteenloko = 20) - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"KJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/cap/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"KK" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass{ - name = "Rapid Transit" - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"KM" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"KO" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/shuttle/trade_ship/general) -"KP" = ( -/turf/simulated/floor/water/indoors, -/area/tradeport/safarizoo) -"KQ" = ( -/obj/structure/closet/walllocker/autolok_wall{ - pixel_y = -24 - }, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/pen{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"KR" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/rack/shelf/steel, -/obj/item/storage/box/survival_knife, -/obj/item/gun/energy/stripper, -/obj/item/gun/energy/sizegun, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"KS" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"KU" = ( -/obj/item/material/ashtray/plastic, -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"KX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"KY" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"KZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"Lb" = ( -/turf/simulated/floor/outdoors/beach/sand/desert/indoors, -/area/tradeport/safarizoo) -"Lc" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -14 - }, -/obj/structure/mirror/long/broke{ - dir = 8; - pixel_x = -29 - }, -/obj/effect/debris/cleanable/blood, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"Ld" = ( -/obj/machinery/chemical_dispenser/catering/bar_alc{ - dir = 4 - }, -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/wood, -/area/tradeport) -"Le" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"Lf" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"Lg" = ( -/obj/effect/debris/cleanable/spiderling_remains, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"Lk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow, -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"Lm" = ( -/obj/machinery/light, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"Ln" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Lo" = ( -/obj/machinery/door/window/southright, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/medical) -"Lq" = ( -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"Ls" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/door/airlock/external/glass{ - icon_state = "door_locked"; - id_tag = "expansion_wing"; - locked = 1; - name = "Wing Expansion - Under Construction" - }, -/obj/structure/cable/yellow{ - 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/tradeport/commhall) -"Lw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"Ly" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/landmark/spawnpoint/job/trader, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"LA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"LB" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 8 - }, -/turf/simulated/floor/bmarble, -/area/tradeport/cafeteria) -"LC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/bed/chair/comfy, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"LE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/light/small/flicker{ - dir = 1 - }, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/atmospherics) -"LG" = ( -/obj/machinery/suit_cycler/syndicate{ - req_access = list(160) - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"LI" = ( -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"LJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"LK" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bookcase, -/obj/item/gun/ballistic/shotgun/pump/combat, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"LL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/sign/warning{ - pixel_x = 29 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"LM" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/structure/urinal{ - pixel_y = 31 - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/tradeport) -"LN" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"LO" = ( -/obj/structure/flora/pottedplant/tropical{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/machinery/camera{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"LP" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "tradeport_hangar_docker"; - pixel_x = -25 - }, -/obj/overmap/entity/visitable/ship/landable/trade, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"LR" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/cash_register/trader{ - dir = 8; - name = "Emporium Cash Register" - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "safari"; - name = "Safari Clerk Shutters" - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"LV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/freezer{ - name = "Nebula Gas - Freezer"; - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"LX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Ma" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"Mc" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/tradeport/pads; - base_turf = /turf/simulated/floor/reinforced; - docking_controller = "nebula_pump4d"; - landmark_tag = "nebula_pad_4d"; - name = "Nebula Pad 4d" - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Md" = ( -/obj/structure/table/standard, -/obj/item/clothing/gloves/sterile/latex, -/obj/item/clothing/mask/surgical, -/obj/item/surgical/retractor{ - pixel_y = 6 - }, -/obj/item/surgical/scalpel, -/obj/item/surgical/surgicaldrill, -/obj/item/surgical/circular_saw, -/obj/item/stack/nanopaste, -/obj/item/surgical/hemostat{ - pixel_y = 4 - }, -/obj/item/surgical/cautery{ - pixel_y = 4 - }, -/obj/item/surgical/FixOVein{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/stack/medical/advanced/bruise_pack, -/obj/item/surgical/bonesetter, -/obj/item/surgical/bonegel{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Me" = ( -/obj/item/radio/intercom/trader{ - pixel_y = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Mh" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Mj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"Mk" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/table/bench/steel, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Ml" = ( -/obj/item/radio/intercom/trader{ - dir = 8; - pixel_x = -25 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"Mm" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/secure/weapon{ - req_access = list(160) - }, -/obj/item/gun/energy/phasegun/pistol, -/obj/item/gun/energy/phasegun/pistol, -/obj/random/weapon/guarenteed, -/obj/random/energy, -/obj/random/energy, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"Mn" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"Mo" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndishow) -"Mq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/media/jukebox{ - state_base = "darkjuke" - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"Mr" = ( -/obj/structure/railing, -/turf/space, -/area/space) -"Ms" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/shield_diffuser, -/obj/item/shield_diffuser, -/obj/item/shield_diffuser, -/obj/machinery/camera{ - dir = 1 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"Mu" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport/facility) -"Mv" = ( -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"Mx" = ( -/turf/simulated/floor/plating, -/area/tradeport/facility) -"My" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/simulated/floor/plating, -/area/tradeport/facility) -"MA" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/expansion) -"MB" = ( -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tradeport) -"MC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"MD" = ( -/obj/machinery/cryopod/trade{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/commons) -"ME" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"MF" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/tradeport) -"MG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"MK" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/closet/crate/secure{ - name = "liquors crate"; - req_access = list(160) - }, -/obj/item/reagent_containers/food/drinks/bottle/redeemersbrew, -/obj/item/reagent_containers/food/drinks/bottle/champagne/jericho, -/obj/item/reagent_containers/food/drinks/bottle/pwine, -/obj/item/reagent_containers/food/drinks/bottle/victory_gin, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"ML" = ( -/obj/structure/table/alien, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"MM" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/bed/chair/comfy, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"MN" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/rust, -/obj/item/toy/figure/ert, -/turf/simulated/floor/plating, -/area/tradeport) -"MO" = ( -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/power/solar_control/autostart, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"MQ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/material/knife/ritual{ - desc = "This curved blade, reminiscent of the harvest moon, brings an uncanny chill at the touch. Some wielders have claimed they hear the constant rustling of grain when holding it."; - name = "Harvest Blade" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/table/marble, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"MS" = ( -/obj/effect/debris/cleanable/spiderling_remains, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport) -"MT" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/gift, -/obj/item/gift, -/obj/item/gift, -/obj/item/gift, -/obj/item/gift, -/obj/item/gift, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"MV" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/door/blast/shutters{ - id = "nebulacafe"; - name = "Nebula Cafe Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tradeport) -"MW" = ( -/obj/structure/bed/chair/sofa/black, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"MY" = ( -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/engineering) -"MZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/map_helper/airlock/door/ext_door, -/obj/machinery/access_button{ - command = "cycle_ext"; - frequency = 1380; - pixel_x = 25; - pixel_y = 5; - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/door/airlock/glass_external{ - name = "Nebula Gas - Employees Only" - }, -/turf/simulated/floor/plating, -/area/tradeport/pads) -"Na" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "storeshutter1" - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/facility) -"Nb" = ( -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "storeshutter2" - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"Nc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/warning/airlock{ - pixel_x = 32 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Nd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"Ne" = ( -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"Nf" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"Ng" = ( -/obj/structure/closet/syndicate/personal{ - name = "Cyndi & Kate's Spare Uniforms" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndi) -"Ni" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/airlock_sensor{ - pixel_x = -25; - pixel_y = 25 - }, -/obj/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/tradeport/pads) -"Nk" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"Nm" = ( -/obj/machinery/vending/medical{ - req_access = null - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"Nn" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport) -"No" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Nebula Gas - Rec Area"; - req_access = list(160) - }, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"Np" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndishow) -"Nr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - dir = 6; - id = "dormmanager"; - name = "Door Lock"; - pixel_y = -26; - specialfunctions = 4 - }, -/obj/landmark/spawnpoint/job/trader, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"Ns" = ( -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Nt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"Nv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Nw" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "clerk"; - name = "Clerk Shutters" - }, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"NC" = ( -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"NE" = ( -/obj/machinery/door/airlock/glass_external{ - name = "Nebula Gas - External Access" - }, -/obj/map_helper/airlock/door/int_door, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/access_button/airlock_interior{ - frequency = 1380; - master_tag = "trade_docks"; - name = "internal access button"; - pixel_y = -24 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"NG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"NH" = ( -/obj/machinery/door/window/westright{ - dir = 2 - }, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"NI" = ( -/obj/structure/bed/chair/sofa{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport) -"NJ" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "tradeportshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/shuttle/plating, -/area/shuttle/trade_ship/general) -"NK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"NL" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/effect/debris/cleanable/blood, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"NM" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"NO" = ( -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"NP" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "tradebridgeshutters"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/shuttle/plating, -/area/shuttle/trade_ship/general) -"NQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"NR" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/closet/crate/freezer/rations, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/obj/item/reagent_containers/hypospray/autoinjector/biginjector/glucose, -/obj/item/reagent_containers/hypospray/autoinjector/biginjector/glucose, -/obj/item/reagent_containers/hypospray/autoinjector/biginjector/glucose, -/obj/item/reagent_containers/hypospray/autoinjector/biginjector/glucose, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"NS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"NT" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/stasis_cage, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"NW" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/toolbox/syndicate{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/stack/cable_coil/yellow, -/obj/item/stack/cable_coil/yellow, -/obj/item/clothing/gloves/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"NX" = ( -/obj/machinery/atmospherics/component/binary/pump/on{ - name = "Waste" - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"NY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"NZ" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Oc" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"Oe" = ( -/obj/structure/catwalk, -/turf/simulated/mineral/floor/vacuum, -/area/space) -"Of" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"Oi" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"Ol" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"Om" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/snow, -/area/tradeport/cyndishow) -"Op" = ( -/obj/effect/debris/cleanable/blood/writing{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"Or" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/debris/cleanable/vomit{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/machinery/air_alarm/alarms_hidden{ - pixel_y = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/tradeport) -"Ou" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport) -"Ov" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/rust, -/obj/random/coin, -/turf/simulated/floor/plating, -/area/tradeport) -"Ow" = ( -/obj/structure/bed/chair/backed_red{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Ox" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"Oz" = ( -/obj/structure/mob_spawner/pest_nest, -/turf/simulated/floor/plating, -/area/tradeport) -"OA" = ( -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"OB" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport/dock) -"OC" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/tradeport/engineering) -"OF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"OG" = ( -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"OI" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 27 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"OK" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/structure/table/bench/wooden, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"OM" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/machinery/light/small, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"ON" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - 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/neutral, -/area/tradeport/commons) -"OO" = ( -/obj/machinery/vending/loadout, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"OP" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/medical) -"OR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"OT" = ( -/obj/structure/cable/yellow{ - 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/tradeport/commhall) -"OU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"OV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"OW" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/machinery/door/airlock/sandstone{ - frequency = 1382; - id_tag = "safari_access"; - name = "John Safari's Adventure Emporium"; - tag = "safari_door" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"OX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"OY" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"OZ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/random/multiple/corp_crate/no_weapons, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"Pa" = ( -/obj/structure/table/glass, -/obj/item/radio/intercom/trader{ - dir = 8; - pixel_x = -25 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"Pb" = ( -/obj/structure/table/marble, -/obj/machinery/reagentgrinder, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"Pe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"Pf" = ( -/turf/space, -/area/tradeport/spine) -"Pg" = ( -/obj/machinery/door/airlock/silver{ - name = "Cyborgs" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport) -"Ph" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"Pl" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/dispenser, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"Pn" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Po" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade_ship/general) -"Pp" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/space) -"Pq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Pr" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump4b"; - name = "Nebula Pump Controller"; - pixel_x = -25 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Ps" = ( -/obj/landmark/spawnpoint/latejoin/tradeport, -/obj/machinery/computer/cryopod/robot{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/commons) -"Pt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"Pv" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Pw" = ( -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport) -"Py" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"Pz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"PA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/spine) -"PB" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"PC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 4; - pixel_x = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/tradeport) -"PD" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/largecrate/animal/cow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"PE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"PH" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/pipe/tank/air, -/turf/simulated/floor/plating, -/area/tradeport) -"PI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/tradeport/exterior) -"PL" = ( -/obj/machinery/light{ - dir = 8; - light_range = 12 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"PM" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/sign/warning/airlock{ - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/tradeport/pads) -"PP" = ( -/turf/simulated/floor/snow, -/area/tradeport/cyndishow) -"PQ" = ( -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/space) -"PR" = ( -/obj/structure/bed/chair/sofa/corner, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/camera, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport) -"PS" = ( -/obj/structure/table/steel_reinforced, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/random/plushie, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"PT" = ( -/obj/structure/table/woodentable, -/obj/item/clipboard, -/turf/simulated/floor/carpet/bcarpet, -/area/shuttle/trade_ship/general) -"PW" = ( -/obj/machinery/access_button{ - command = "cycle_ext"; - frequency = 8018; - master_tag = "trade_space_lock"; - pixel_x = 25; - pixel_y = 5 - }, -/obj/machinery/door/airlock/glass_external{ - name = "Ship Hatch" - }, -/obj/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"PY" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/rag, -/turf/simulated/floor/wood, -/area/tradeport) -"PZ" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump5a"; - name = "Nebula Pump Controller"; - pixel_x = 25 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Qc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/spine) -"Qe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/grass, -/area/tradeport) -"Qf" = ( -/obj/machinery/media/jukebox, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"Qj" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"Qk" = ( -/obj/structure/flora/pottedplant/subterranean, -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Qm" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/stolenpackageplus, -/obj/item/stolenpackageplus, -/obj/item/stolenpackageplus, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"Qp" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport/facility) -"Qt" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/obj/structure/lightpost, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"Qv" = ( -/obj/structure/railing, -/turf/simulated/mineral/floor/vacuum, -/area/space) -"Qw" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"Qx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Qy" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/beach/sand/desert/indoors, -/area/tradeport/safarizoo) -"QA" = ( -/obj/machinery/vending/cigarette{ - name = "Cigarette machine"; - prices = list(); - products = list(/obj/item/storage/fancy/cigarettes = 10, /obj/item/storage/box/matches = 10, /obj/item/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"QB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"QC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"QD" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/spine) -"QE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"QF" = ( -/turf/simulated/floor/outdoors/ice, -/area/tradeport/cyndishow) -"QI" = ( -/turf/simulated/floor/plating, -/area/tradeport/dock) -"QJ" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/purple, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"QN" = ( -/obj/machinery/door/window/northleft{ - name = "Cargo Hold"; - req_access = list(160) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"QO" = ( -/obj/machinery/door/airlock/external/glass{ - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"QP" = ( -/obj/machinery/camera, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"QQ" = ( -/obj/structure/window/reinforced, -/obj/structure/sink{ - dir = 8; - pixel_x = -14 - }, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"QS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"QT" = ( -/obj/machinery/vending/loadout/accessory, -/obj/item/modular_computer/telescreen/preset{ - pixel_y = 23; - text = "Text" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"QU" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/item/clothing/gloves/yellow, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"QW" = ( -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tradeport/facility) -"QX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"QY" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Ra" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/bluespace_radio/commerce, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"Rb" = ( -/obj/structure/cable/yellow{ - 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/old_tile/purple, -/area/tradeport) -"Rc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Rf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Rg" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"Rh" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "clerk"; - name = "Clerk Shutters" - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Ri" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport) -"Rk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Rm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"Ro" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cyndi"; - name = "C&K Shutters" - }, -/obj/machinery/cash_register/trader{ - dir = 8; - name = "C&K Cash Register" - }, -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndi) -"Rp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall, -/area/tradeport/commons) -"Rq" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"Rr" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/camera{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"Rs" = ( -/obj/machinery/body_scanconsole, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"Rt" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "cyndi"; - name = "C&K Shutters"; - pixel_x = -27; - pixel_y = -5 - }, -/obj/machinery/button/holosign{ - id = "cyndisign"; - pixel_x = -26; - pixel_y = 5 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"Rv" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "tradedorm1"; - name = "Dorm 1 Lock"; - pixel_x = -26; - specialfunctions = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"Rx" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "clerk"; - name = "Clerk Shutters" - }, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"Ry" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"Rz" = ( -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/facility) -"RA" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lightpost, -/turf/simulated/floor/outdoors/beach/sand/desert/indoors, -/area/tradeport/safarizoo) -"RB" = ( -/obj/machinery/seed_storage/xenobotany, -/turf/simulated/floor/grass, -/area/tradeport) -"RC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Nebula Gas Trade Post" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"RE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"RF" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/effect/floor_decal/grass_edge, -/turf/simulated/floor/outdoors/dirtlight, -/area/tradeport/cyndishow) -"RG" = ( -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"RL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"RM" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/floor_decal/plaque{ - desc = "Although the orbital college where this chain of grisly murders once took place has been long since scuttled and scrapped, the public psyche has not yet forgotten the bloody deeds of the Valentine Killer."; - name = "The Valentine Killer" - }, -/turf/simulated/floor/tiled/hydro, -/area/tradeport/cyndishow) -"RN" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "clerk"; - name = "Clerk Shutters" - }, -/turf/simulated/floor/tiled/steel, -/area/tradeport) -"RP" = ( -/turf/simulated/wall/r_wall, -/area/tradeport/atmospherics) -"RQ" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"RS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"RW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/meter, -/obj/effect/debris/cleanable/cobweb2, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport) -"RX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"RY" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"RZ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(160); - req_one_access = null - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"Sa" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"Sc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"Sd" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/flame/lighter/zippo/red, -/obj/item/flame/lighter/zippo/red, -/obj/item/flame/lighter/zippo/red, -/obj/item/flame/lighter/zippo/red, -/obj/item/flame/lighter/zippo/red, -/obj/item/flame/lighter/zippo/red, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"Se" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Sf" = ( -/obj/structure/stasis_cage, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"Sg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"Sh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"Si" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/vending/glukoz, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Sk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/commhall) -"Sl" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/mineral/vacuum, -/area/tradeport/exterior) -"Sp" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light, -/obj/random/multiple/corp_crate/no_weapons, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"Sq" = ( -/turf/simulated/floor/airless, -/area/space) -"Ss" = ( -/obj/structure/sign/graffiti/pisoff, -/turf/simulated/floor/plating, -/area/tradeport) -"Sy" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"Sz" = ( -/obj/structure/table/hardwoodtable, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "nebulacafe"; - name = "Nebula Cafe Shutters" - }, -/turf/simulated/floor/wood, -/area/tradeport) -"SB" = ( -/obj/effect/debris/cleanable/blood/drip, -/obj/effect/debris/cleanable/blood/drip, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"SC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"SD" = ( -/obj/machinery/button/remote/blast_door{ - id = "nebulacafe"; - pixel_y = 27; - req_access = list(160) - }, -/turf/simulated/floor/wood, -/area/tradeport) -"SE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport) -"SF" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"SG" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"SH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Nebula Gas Food Mart" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"SJ" = ( -/obj/machinery/door/blast/regular{ - id = "safari-load"; - name = "Safari Loading Doors" - }, -/turf/simulated/floor/wood, -/area/tradeport/safari) -"SK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"SL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/landmark/spawnpoint/job/trader, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"SN" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"SO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "tradeport_hangar_dock"; - pixel_x = 25 - }, -/obj/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"SP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"SR" = ( -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable{ - capacity = 1.5e+007; - charge = 1.5e+007; - cur_coils = 3; - input_attempt = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"SS" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"ST" = ( -/obj/structure/transit_tube, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"SV" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump3a"; - name = "Nebula Pump Controller"; - pixel_x = 25 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"SY" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/space, -/area/space) -"SZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport) -"Ta" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"Tb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/sofa/black/corner, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/landmark{ - name = "Trader" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"Td" = ( -/obj/machinery/door/airlock/glass{ - name = "Storage" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"Tf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"Tg" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/tradeport/pads) -"Th" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Tk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/l3closet/janitor, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"Tl" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -13 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"Tq" = ( -/obj/structure/transit_tube, -/turf/space, -/area/tradeport/spine) -"Tr" = ( -/turf/simulated/floor, -/area/tradeport/pads) -"Ts" = ( -/obj/structure/table/hardwoodtable, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Tu" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump2a"; - name = "Nebula Pump Controller"; - pixel_x = -25 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Tw" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/component/binary/pump/high_power/on{ - dir = 8; - frequency = 8018; - id = "pumpone"; - name = "Pump One"; - target_pressure = 15000 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"Tx" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"Ty" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"Tz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westright{ - dir = 2; - name = "rare item display case"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/item/gun/energy/gun/fluff/gunsword, -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"TB" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"TC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/landmark/spawnpoint/job/trader, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"TF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"TI" = ( -/turf/simulated/wall, -/area/tradeport/engineering) -"TJ" = ( -/obj/item/clothing/accessory/holster/hip, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster/armpit, -/obj/item/clothing/accessory/holster/hip, -/obj/item/clothing/accessory/storage/white_vest, -/obj/item/clothing/accessory/storage/white_vest, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/accessory/storage/webbing, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/brown_vest, -/obj/item/clothing/accessory/storage/brown_vest, -/obj/item/clothing/accessory/holster/machete, -/obj/item/clothing/accessory/holster/leg, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"TK" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"TL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"TP" = ( -/obj/structure/inflatable/door, -/turf/simulated/floor/airless, -/area/tradeport/expansion) -"TQ" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/spine) -"TR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "storeshutter2" - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"TU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/mob/living/bot/cleanbot/roomba/meido{ - desc = "A small, plate-like cleaning robot. She looks quite dignified. This one has a frilly headband attached to the top."; - name = "Madam Dusty"; - on = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"TV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"TZ" = ( -/obj/machinery/door/airlock/glass/engineering{ - name = "Engineering"; - req_access = list(160); - req_one_access = null - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Ua" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump6a"; - name = "Nebula Pump Controller"; - pixel_x = -25 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Ub" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"Ud" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"Ue" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/bmarble, -/area/tradeport/cafeteria) -"Uf" = ( -/obj/machinery/door/airlock/external/glass{ - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Ui" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/plaque{ - desc = "This infamous set of antique armor belonged to an Old Earth warrior who died in battle. Although the details behind the Samurai's identity have long since been lost, rumors abound that this suit bears a powerful curse. Perhaps the spirit of that long dead Samurai still guards what is left of its remains."; - name = "Ancient Samurai" - }, -/turf/simulated/floor/snow, -/area/tradeport/cyndishow) -"Uk" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/barricade, -/obj/machinery/door/airlock/silver{ - name = "Cyndi & Kate's Novelty Wares" - }, -/turf/simulated/floor/plating, -/area/tradeport/cyndi) -"Um" = ( -/obj/structure/closet/crate/bin{ - anchored = 1 - }, -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/white, -/area/tradeport) -"Un" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/alien, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"Uo" = ( -/obj/machinery/light, -/obj/machinery/vending/loadout/overwear, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Uq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/engineering) -"Ur" = ( -/obj/machinery/door/firedoor/glass{ - dir = 8 - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/tradeport/cafeteria) -"Us" = ( -/obj/item/stool/padded, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood, -/area/tradeport) -"Ut" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/shower{ - pixel_y = 3 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/trade_ship/cockpit) -"Uu" = ( -/obj/structure/closet/crate/trashcart{ - desc = "A heavy metal bin full of great deals."; - name = "bargain bin" - }, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/medical, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/research, -/obj/random/maintenance/security, -/obj/random/maintenance/security, -/obj/random/soap, -/obj/random/tech_supply/component/nofail, -/obj/random/tech_supply/component/nofail, -/obj/random/tech_supply/component/nofail, -/obj/random/tech_supply/component/nofail, -/obj/random/tech_supply/nofail, -/obj/random/tech_supply/nofail, -/obj/random/tech_supply/nofail, -/obj/random/tech_supply/nofail, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Uv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Ux" = ( -/obj/structure/plasticflaps/mining, -/obj/structure/transit_tube, -/turf/simulated/floor/plating, -/area/tradeport/spine) -"UC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/closet/crate/secure/hydrosec{ - name = "weedkiller crate"; - req_access = list(160) - }, -/obj/item/grenade/chem_grenade/antiweed, -/obj/item/grenade/chem_grenade/antiweed, -/obj/item/grenade/chem_grenade/antiweed, -/obj/item/grenade/chem_grenade/antiweed, -/obj/item/grenade/chem_grenade/antiweed, -/obj/item/grenade/chem_grenade/antiweed, -/obj/item/material/knife/machete/hatchet, -/obj/item/material/knife/machete/hatchet, -/obj/item/material/twohanded/fireaxe/scythe, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"UD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"UG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -13 - }, -/obj/structure/mirror/raider{ - pixel_x = -29 - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"UH" = ( -/obj/machinery/atmospherics/component/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"UJ" = ( -/obj/structure/stasis_cage, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"UN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"UO" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"UP" = ( -/obj/machinery/door/window/westleft{ - dir = 2 - }, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"UQ" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id = "trade-ship-secure"; - name = "Blast Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"US" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"UT" = ( -/obj/structure/closet/firecloset, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/tradeport/facility) -"UU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/tradeport/expansion) -"UV" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"UW" = ( -/obj/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - frequency = 1380; - id_tag = "trade_pumps" - }, -/turf/simulated/floor/plating, -/area/tradeport) -"UX" = ( -/obj/machinery/light/flamp, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"UY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "rare item display case"; - req_access = list(160) - }, -/obj/structure/table/marble, -/obj/effect/floor_decal/spline/plain{ - dir = 6 - }, -/obj/item/pinpointer/nukeop, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"UZ" = ( -/turf/simulated/floor/wood, -/area/shuttle/trade_ship/general) -"Vb" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 4; - name = "Nebula Commercial District" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Vc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"Vd" = ( -/obj/machinery/shipsensors, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shuttle/trade_ship/general) -"Vk" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "storeshutter1"; - pixel_x = 24; - req_access = list(160) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"Vl" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/tradeport/pads) -"Vs" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_y = 27 - }, -/obj/structure/bed/chair/sofa/black/right, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/landmark{ - name = "Trader" - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"Vt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"Vx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Vy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/light, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/spine) -"VA" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "trade_docks" - }, -/obj/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1380; - id_tag = "trade_docks"; - pixel_x = -25; - pixel_y = -26 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/tradeport/pads) -"VB" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "trade_docks" - }, -/obj/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor, -/area/tradeport/pads) -"VF" = ( -/obj/structure/fence{ - pixel_x = 15 - }, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/exterior) -"VG" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"VH" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "safari"; - name = "Safari Clerk Shutters" - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"VJ" = ( -/turf/simulated/floor/wood, -/area/tradeport/safarizoo) -"VN" = ( -/obj/structure/window/reinforced, -/obj/structure/table/woodentable, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"VO" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"VQ" = ( -/obj/structure/closet/walllocker/autolok_wall{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"VS" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/tradeport) -"VU" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/outdoors/dirtlight, -/area/tradeport/cyndishow) -"VW" = ( -/obj/machinery/button/remote/blast_door{ - id = "clerk"; - pixel_y = 27; - req_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport) -"VX" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"VY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/tradeport/cyndishow) -"VZ" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/space) -"Wa" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "clerk"; - name = "Clerk Shutters" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Wc" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/wood, -/area/tradeport/cafeteria) -"Wd" = ( -/obj/machinery/vending/loadout/loadout_misc, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"We" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/door/airlock/multi_tile/glass/polarized{ - id_tint = "traderstardoor"; - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/shuttle/trade_ship/general) -"Wf" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "spine_inbound"; - name = "inbound conveyor"; - pixel_y = 8 - }, -/obj/machinery/light, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"Wi" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/icecream_cart, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"Wj" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"Wk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/tradeport/pads) -"Wl" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"Wn" = ( -/obj/structure/flora/pumpkin, -/turf/simulated/floor/outdoors/dirt, -/area/tradeport/cyndishow) -"Wo" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/shield_projector, -/obj/item/shield_projector, -/obj/item/shield_projector, -/turf/simulated/floor/wood, -/area/tradeport/cyndi) -"Wp" = ( -/obj/effect/floor_decal/spline/fancy{ - dir = 5 - }, -/turf/simulated/floor/bmarble, -/area/tradeport/cafeteria) -"Wr" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/catwalk, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"Wv" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/turf/space, -/area/space) -"Wy" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/effect/floor_decal/spline/plain{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/medical) -"Wz" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"WB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"WC" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"WF" = ( -/obj/machinery/door/window/southleft{ - name = "Cargo Hold"; - req_access = list(160) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"WG" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate, -/obj/item/stolenpackage, -/obj/item/stolenpackage, -/obj/item/stolenpackage, -/obj/item/stolenpackage, -/obj/item/stolenpackage, -/obj/item/stolenpackage, -/obj/item/stolenpackage, -/obj/item/stolenpackage, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"WJ" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "nebula_pump3c"; - name = "Nebula Pump Controller"; - pixel_x = 25 - }, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"WK" = ( -/turf/simulated/floor/wood, -/area/tradeport/cyndishow) -"WL" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/tradeport) -"WM" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"WN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/landmark/spawnpoint/job/trader, -/obj/effect/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/blue, -/area/tradeport/commons) -"WR" = ( -/obj/machinery/camera, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cyndishow) -"WT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/steel, -/obj/structure/table/rack/steel, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northright, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"WU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"WV" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "storeshutter3"; - pixel_x = -23; - req_access = list(160) - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"WW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/gray, -/area/tradeport) -"WZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"Xa" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"Xb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Xd" = ( -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"Xe" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Xg" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"Xh" = ( -/obj/structure/railing, -/turf/space, -/area/tradeport/spine) -"Xi" = ( -/obj/structure/sign/atmos_plasma{ - desc = "WARNING! Plasma flow tube nearby."; - name = "Pump Two" - }, -/turf/simulated/wall/r_wall, -/area/tradeport/pads) -"Xj" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"Xm" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"Xn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"Xs" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/lightpost, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"Xt" = ( -/obj/structure/janitorialcart, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/turf/simulated/floor/tiled/old_cargo/beige, -/area/tradeport/atmospherics) -"Xv" = ( -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tradeport/engineering) -"Xy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"Xz" = ( -/obj/machinery/light, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/shuttle/trade_ship/general) -"XA" = ( -/obj/machinery/door/window/westleft{ - req_access = list(160) - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"XD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/warning{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"XE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"XF" = ( -/obj/machinery/air_alarm/alarms_hidden{ - dir = 8; - pixel_x = 22; - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"XI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/holopad/ship/starts_inactive, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"XJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"XL" = ( -/obj/machinery/computer/ship/engines{ - dir = 1 - }, -/obj/item/radio/intercom/trader{ - dir = 8; - pixel_x = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/cockpit) -"XM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"XN" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport/spine) -"XO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/holopad/ship/starts_inactive, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"XR" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/catering/bar_soft{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"XT" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/defib_kit/loaded, -/obj/item/defib_kit/loaded, -/obj/effect/floor_decal/corner/blue/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tradeport/medical) -"XU" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"XV" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/radio/intercom/trader{ - dir = 4; - pixel_x = 25 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/shuttle/trade_ship/general) -"XW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"XX" = ( -/obj/machinery/camera{ - dir = 4 - }, -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport/cyndishow) -"XY" = ( -/turf/simulated/floor/airless, -/area/tradeport/expansion) -"Yb" = ( -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/cockpit) -"Yc" = ( -/obj/structure/closet/crate/secure{ - name = "slime cores crate"; - req_access = list(160) - }, -/obj/random/slimecore, -/obj/random/slimecore, -/obj/random/slimecore, -/obj/random/slimecore, -/obj/random/slimecore, -/obj/random/slimecore, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Ye" = ( -/obj/structure/table/wooden_reinforced, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "safari"; - name = "Safari Clerk Shutters" - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"Yg" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/tradeport) -"Yh" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/shoes/magboots, -/obj/item/tank/oxygen, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tradeport/engineering) -"Yj" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - landmark_tag = "nebula_space_SE"; - name = "Near Nebulous Gas (SE)" - }, -/turf/space, -/area/space) -"Yk" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 10 - }, -/obj/machinery/door/window/southright, -/turf/simulated/floor/tiled/monotile, -/area/tradeport/medical) -"Yl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"Ym" = ( -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"Yn" = ( -/obj/spawner/window/low_wall/reinforced/full/firelocks, -/turf/simulated/floor/plating, -/area/tradeport/pads) -"Yo" = ( -/obj/structure/transit_tube/station{ - automatic_launch_time = 40 - }, -/obj/structure/transit_tube_pod{ - dir = 8; - move_speed = 40 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"Ys" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/power/smes/buildable{ - charge = 1.5e+007; - cur_coils = 3; - input_attempt = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport/engineering) -"Yt" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/camera{ - dir = 4 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"Yu" = ( -/obj/structure/cable/yellow, -/obj/structure/catwalk, -/obj/machinery/power/apc/alarms_hidden/south_mount{ - cell_type = /obj/item/cell/super; - req_access = list(160) - }, -/turf/simulated/floor, -/area/tradeport/pads) -"Yv" = ( -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"Yw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/loading{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"Yx" = ( -/obj/structure/poster{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Yy" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Nebula Gas - Atmospherics"; - req_access = list(160) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/atmospherics) -"Yz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/tradeport/facility) -"YA" = ( -/obj/structure/closet{ - name = "John Safari Spare Uniforms" - }, -/turf/simulated/floor/tiled/old_tile/yellow, -/area/tradeport/safari) -"YB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/dock) -"YD" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/surgery, -/obj/item/stack/nanopaste{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/stack/nanopaste{ - pixel_x = 9; - pixel_y = -4 - }, -/obj/item/robotanalyzer{ - pixel_y = -8 - }, -/obj/item/surgical/bioregen, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 5 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/tradeport/medical) -"YE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"YF" = ( -/obj/machinery/power/apc/alarms_hidden/south_mount{ - req_access = list(160) - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport/spine) -"YG" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"YH" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/commons) -"YJ" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/grass/heavy/indoors, -/area/tradeport/safarizoo) -"YK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"YN" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/blue, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/tradeport/commons) -"YO" = ( -/obj/machinery/door/window/westleft{ - dir = 2 - }, -/obj/machinery/shower{ - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/white, -/area/tradeport/commons) -"YP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"YQ" = ( -/turf/simulated/floor/wood, -/area/tradeport/commons) -"YR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"YS" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/obj/structure/lightpost, -/turf/simulated/floor/outdoors/beach/sand/desert/indoors, -/area/tradeport/safarizoo) -"YT" = ( -/obj/machinery/atmospherics/component/binary/pump/high_power/on{ - dir = 1; - name = "Air Supply"; - target_pressure = 1000 - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"YV" = ( -/obj/machinery/door/airlock/multi_tile/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"YW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport) -"YY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/old_tile/beige, -/area/tradeport/safari) -"Za" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"Zb" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"Zd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/door/airlock/glass{ - name = "Showers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/shuttle/floor/white, -/area/tradeport/commons) -"Ze" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"Zg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/facility) -"Zh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/air_alarm/alarms_hidden{ - dir = 1; - pixel_y = -22; - req_one_access = list(160) - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"Zk" = ( -/obj/machinery/door/firedoor{ - dir = 8; - req_one_access = list(160) - }, -/obj/machinery/door/airlock/maintenance_hatch{ - req_access = list(160); - req_one_access = null - }, -/turf/simulated/floor/plating, -/area/tradeport/facility) -"Zl" = ( -/obj/machinery/light, -/turf/simulated/floor/reinforced, -/area/tradeport/pads) -"Zm" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "spine_outbound" - }, -/turf/simulated/floor/airless, -/area/tradeport/spine) -"Zp" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/asteroid_steel/airless, -/area/tradeport/pads) -"Zs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/poster{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/old_tile/red, -/area/tradeport) -"Zt" = ( -/obj/machinery/vending/boozeomat{ - req_access = null - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/wmarble, -/area/tradeport/cafeteria) -"Zu" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/debris/cleanable/blood/gibs/robot/limb, -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/tradeport/atmospherics) -"Zv" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/turf/simulated/floor/carpet/bcarpet, -/area/tradeport/cafeteria) -"Zx" = ( -/obj/landmark/spawnpoint/latejoin/tradeport, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tradeport/commons) -"Zy" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(160) - }, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/cafeteria) -"Zz" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 1 - }, -/turf/simulated/floor, -/area/tradeport/pads) -"ZA" = ( -/obj/structure/fence/corner{ - dir = 8 - }, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/pads) -"ZB" = ( -/obj/machinery/atmospherics/component/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_tile/purple, -/area/tradeport/spine) -"ZC" = ( -/obj/structure/sign/vacuum, -/turf/simulated/wall/r_wall, -/area/tradeport/engineering) -"ZF" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/tradeport/dock) -"ZG" = ( -/obj/structure/sign/department/commander{ - name = "MANAGER"; - pixel_x = 32; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"ZK" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/atmospherics/component/unary/vent_pump/on, -/obj/item/reagent_containers/food/drinks/bottle/cream, -/obj/item/reagent_containers/food/drinks/bottle/cream, -/obj/item/reagent_containers/food/drinks/bottle/cream, -/obj/item/reagent_containers/food/drinks/bottle/cream, -/obj/item/reagent_containers/food/drinks/bottle/cream, -/obj/item/reagent_containers/food/drinks/bottle/cream, -/obj/item/reagent_containers/food/drinks/bottle/cream, -/obj/item/reagent_containers/food/drinks/bottle/cream, -/turf/simulated/floor/tiled/freezer, -/area/tradeport) -"ZM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/old_tile/blue, -/area/tradeport) -"ZO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/tradeport/pads) -"ZP" = ( -/obj/machinery/door/airlock/silver{ - name = "Toilet" - }, -/turf/simulated/shuttle/floor/white, -/area/shuttle/trade_ship/cockpit) -"ZR" = ( -/obj/structure/bed/chair/comfy, -/turf/simulated/floor/carpet/blucarpet, -/area/tradeport) -"ZS" = ( -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"ZT" = ( -/obj/structure/railing, -/turf/simulated/mineral/floor/vacuum, -/area/tradeport/exterior) -"ZU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/tradeport/commons) -"ZV" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/neutral, -/area/tradeport/commons) -"ZW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/effect/paint/wallgunmetal, -/turf/simulated/wall/rshull, -/area/shuttle/trade_ship/general) -"ZX" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/tiled/red, -/area/shuttle/trade_ship/general) -"ZY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/trade_ship/general) -"ZZ" = ( -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/tradeport/pads) - -(1,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(2,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -iQ -Dh -"} -(3,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(4,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(5,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(6,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(7,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(8,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(9,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(10,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(11,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(12,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(13,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(14,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(15,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(16,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(17,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(18,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(19,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(20,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(21,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(22,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(23,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(24,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(25,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(26,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(27,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(28,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(29,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(30,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(31,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(32,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(33,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(34,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(35,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(36,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(37,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(38,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(39,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(40,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(41,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(42,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(43,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(44,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(45,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(46,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(47,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(48,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(49,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(50,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Dh -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(51,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -Nk -Nk -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(52,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -Nk -Nk -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(53,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Dh -Dh -Nk -Nk -Nk -Nk -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(54,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -Nk -Nk -Dh -Dh -Nk -Dh -Kj -oY -oY -oY -XY -oY -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -hn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(55,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -Nk -Nk -Nk -oY -oY -oY -oY -XY -oY -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(56,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -oY -oY -oY -oY -XY -oY -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(57,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -Nk -Dh -Dh -oY -oY -oY -XY -XY -oY -Nk -Nk -Nk -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(58,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -Nk -Nk -oY -oY -oY -XY -XY -oY -Dh -Dh -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(59,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -Nk -Nk -oY -oY -oY -XY -XY -oY -Dh -Dh -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(60,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -MA -DF -JG -XY -XY -oY -Nk -Nk -Nk -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(61,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -XY -oY -UU -XY -XY -oY -Nk -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Jb -Jb -Jb -Jb -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(62,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -rs -rs -Ga -Ga -Ga -Ga -Ga -Ga -Ga -Ga -rs -rs -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -XY -oY -uL -XY -XY -oY -Dh -Dh -Nk -Nk -Dh -Dh -Jb -Jb -Jb -Jb -Jb -Mo -XX -Jb -Jb -Jb -Jb -Jb -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(63,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -rs -Ga -Ga -Ga -Ga -Ga -Ga -Ga -rs -Dc -RY -RY -RY -RY -RY -RY -RY -RY -Dc -Ga -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -Nk -XY -XY -UU -XY -XY -XY -Dh -Dh -Nk -Dh -Dh -Dh -Jb -cI -fI -PP -Om -Np -vL -VU -rP -RF -mr -Jb -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(64,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -rs -rs -Ox -RY -RY -RY -RY -RY -RY -Dc -Ir -Db -Db -Db -Db -Db -Db -Db -MC -pg -rs -Ga -rs -Dh -Dh -Dh -Dh -Dh -Dh -Nk -XY -XY -UU -AW -TP -AW -Nk -Nk -Nk -Nk -Nk -Dh -Jb -PP -QF -QF -Ui -Np -vL -uF -cb -ai -Wn -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(65,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -rs -rs -bW -VJ -Ir -Db -Db -Db -Db -Db -Db -pk -iW -pW -pW -pW -pW -pW -Qt -eb -VJ -Dc -bW -Ga -Dh -Dh -Dh -Dh -Dh -Dh -Nk -AW -AW -ua -AW -XY -AW -Nk -Nk -Nk -Dh -Dh -Dh -Jb -HN -Iv -AK -BY -Np -vL -MQ -aa -ai -Dm -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(66,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Ga -VJ -VJ -Ir -pk -XU -pW -pW -Bx -pW -pW -pW -OA -OA -OA -OA -OA -OA -uN -zS -Db -tX -Ck -Ga -Dh -Dh -Dh -Dh -Dh -Dh -Dh -MA -jl -Ii -AW -TP -MA -Nk -Nk -Nk -Dh -Dh -Dh -Jb -PP -Je -QF -IO -Np -vL -He -Aa -ai -dz -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(67,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Ga -OK -Ol -pk -XU -OA -OA -OA -OA -OA -OA -OA -DN -OA -OA -nr -OA -OA -OA -pW -Im -eb -RY -Ga -Dh -Dh -Dh -Dh -Dh -Dh -Dh -MA -yr -mw -Kp -pO -MA -Nk -Nk -Nk -Dh -Dh -Dh -Jb -fI -PP -PP -Om -Np -vL -RL -xo -ai -Wn -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(68,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Ga -RY -ed -iW -OA -OA -OA -OA -OA -OA -OA -OA -OA -OA -OA -OA -OA -OA -OA -OA -uN -jY -FH -rs -mz -mz -mz -mz -mz -mz -mz -pj -pj -Ls -wz -pj -pj -op -op -op -op -op -op -op -Jb -Jb -Jb -Jb -Np -vL -Jb -Jb -Jb -Jb -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(69,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Ga -sA -Hb -RQ -OA -DN -OA -OA -OA -OA -OA -OA -OA -OA -OA -OA -OA -DN -OA -OA -uN -eb -pg -mz -mz -jW -YA -VH -fv -aV -rV -pj -fN -OT -kD -kD -pj -cM -BC -zf -ni -Rt -kb -lB -Qm -Jb -Ek -bf -Np -vL -Cg -Jb -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(70,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Ga -RY -VJ -dK -OA -OA -OA -KP -KP -nr -KP -OA -OA -OA -OA -OA -OA -OA -nr -OA -uN -eb -VJ -mz -mz -tL -wj -Ik -aV -mi -Rr -pj -sY -uU -kD -ho -pj -Ng -vc -vc -Ji -lB -MT -oD -Ms -Jb -Mn -Mv -Np -vL -qW -Jb -Jb -Jb -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(71,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Ga -RY -VJ -dK -Lb -OA -OA -tS -KP -KP -KP -OA -OA -vX -OA -OA -OA -OA -OA -OA -uN -yM -LI -mz -bv -mX -mN -VH -EB -YY -Xd -pj -uV -Ad -Fb -aC -pj -wq -wq -Ro -zb -lB -ph -uj -vv -Jb -QP -UY -Np -vL -qW -PL -sd -qe -Jb -Jb -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(72,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -rs -rs -Ox -VJ -dK -Lb -Lb -OA -OA -KP -KP -KP -OA -OA -OA -OA -OA -OA -OA -OA -OA -fW -cv -VJ -mz -hW -LR -vg -Ye -aV -qo -hL -mz -kD -gB -kD -kD -op -lB -lB -lB -lB -lB -lB -as -OG -Jb -WK -WK -Np -vL -jb -px -GZ -GZ -uf -Jb -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(73,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Ga -VJ -VJ -VJ -dK -Lb -Lb -KP -KP -KP -KP -KP -OA -OA -OA -OA -tS -OA -OA -OA -OA -NH -OX -tx -jg -Ta -Ta -Ac -Ta -Ta -pd -Ta -OW -hA -cf -Sk -tg -Uk -IK -IK -rM -IK -IK -IK -Of -IK -EL -iA -iA -VY -gJ -Sh -KF -Mn -Mn -zx -Jb -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(74,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Ga -RY -VJ -RA -Lb -Lb -Lb -Lb -Lb -KP -KP -OA -OA -OA -OA -OA -OA -OA -OA -OA -OA -uN -eb -VJ -mz -FU -EB -aV -EB -aV -EB -tr -jP -kD -gB -kD -ob -HA -lB -lB -HF -lB -lB -bF -lB -nZ -Jb -WK -WK -Np -vL -uZ -uw -Mn -Mn -Mn -Jb -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(75,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Ga -RY -VJ -dK -Lb -Lb -Lb -Lb -Lb -OA -OA -OA -DN -OA -OA -OA -OA -OA -OA -DN -OA -uN -jY -eC -SJ -EB -aV -UJ -aV -UJ -aV -UJ -pj -ob -OU -MG -RG -pj -lB -Wo -HF -iU -lB -ye -lB -oT -Jb -WR -Tz -Np -vL -qW -JU -vF -dk -Jb -Jb -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(76,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Ga -sA -RS -dK -Lb -Lb -Lb -Lb -Lb -OA -OA -OA -OA -OA -OA -OA -OA -OA -YJ -YJ -YJ -lm -eb -VJ -SJ -aV -EB -Sf -EB -Sf -EB -Sf -pj -nl -gB -kD -ho -pj -IH -gF -GR -Sd -lB -Ca -lB -wK -Jb -Mn -Mv -Np -vL -qW -Jb -Jb -Jb -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(77,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Ga -RY -ed -Qy -yX -Lb -vR -Lb -yX -yX -YJ -YJ -Xs -YJ -YJ -YJ -YJ -lm -Ir -Db -Db -Db -jB -Hc -mz -hj -In -NT -XF -NT -aV -ay -pj -xD -gB -kD -kD -pj -er -xq -xs -mF -Jj -zk -lB -cs -Jb -kC -KG -Np -vL -iI -Jb -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(78,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Ga -OK -SP -Db -MC -Qy -yX -YS -Ir -Db -Db -Db -Db -Db -Db -Db -Db -Db -pk -up -VJ -VJ -VJ -VJ -rs -mz -mz -mz -mz -mz -mz -mz -pj -kD -gB -kD -kD -pj -op -op -op -op -op -op -op -Jb -Jb -Jb -Jb -Np -vL -Jb -Jb -Jb -Jb -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(79,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Ga -VJ -VJ -VJ -zS -Db -Db -Db -pk -up -RY -RY -RY -RY -RY -RY -RY -RY -sv -rs -Ga -Ga -Ga -Ga -rs -Dh -Dh -Dh -Dh -Dh -Dh -Dh -pj -pj -bh -yy -pj -pj -Dh -Dh -Dh -Dh -Dh -Dh -Jb -DB -az -az -DE -Np -vL -vo -ie -Lc -kz -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(80,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -rs -Ga -rs -hc -RY -RY -RY -RY -pg -rs -Ga -Ga -Ga -Ga -Ga -Ga -Ga -Ga -Ga -rs -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -qc -xV -du -qc -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Jb -Fs -Fs -az -kT -Np -vL -RM -Bd -mJ -mJ -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(81,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -rs -Ga -Ga -Ga -Ga -Ga -Ga -rs -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -qc -fe -gg -qc -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Jb -IA -dt -az -zD -Np -vL -qn -mJ -iL -rd -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(82,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -qc -xV -du -qc -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Jb -Fs -Fs -az -rI -Np -vL -GM -mJ -Op -mJ -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(83,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -qc -fe -gg -qc -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Jb -DB -az -bj -DE -Np -vL -gc -Ke -NL -uR -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(84,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -FG -bc -qc -qc -qc -qc -bc -wF -TQ -bc -qc -qc -qc -qc -bc -HZ -Dh -Jb -Jb -Jb -Jb -Jb -jF -bn -Jb -Jb -Jb -Jb -Jb -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(85,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -qc -oJ -oJ -lR -sB -bc -fe -gg -bc -Ci -lR -oJ -oJ -qc -Dh -Dh -Dh -Dh -Dh -Dh -Jb -Jb -Jb -Jb -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(86,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -qc -oJ -cx -UN -EE -KK -DR -Qc -KK -EE -GV -kU -oJ -qc -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(87,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -qc -oJ -ST -ZB -Gw -bc -fe -re -bc -Yw -ZB -ST -oJ -qc -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(88,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -FG -bc -qc -Ux -qc -an -bc -JA -Vy -bc -cN -qc -Ux -qc -bc -HZ -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -iw -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(89,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Tq -Mr -fG -qc -fe -gg -qc -Zm -SY -Tq -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(90,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Tq -Mr -fG -qc -xV -du -qc -Zm -SY -Tq -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(91,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -bs -bs -bs -bs -bs -bs -bs -Wv -pJ -dm -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -Dh -Dh -Dh -Dh -Dh -Dh -Tq -Mr -fG -qc -fe -gg -qc -Zm -SY -Tq -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(92,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Mr -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -cT -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -SY -cd -Dh -Dh -Dh -Dh -Tq -Mr -fG -qc -ik -QD -qc -Zm -SY -Tq -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(93,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Mr -Bg -VZ -VZ -VZ -VZ -VZ -VZ -VZ -Pp -PQ -PQ -PQ -PQ -PQ -PQ -PQ -PQ -PQ -PQ -PQ -PQ -PQ -PQ -ET -SY -cd -cd -Dh -Dh -Dh -Tq -Mr -fG -bc -qD -bA -bc -Zm -SY -Tq -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(94,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Mr -ag -ag -ag -ag -ag -ag -ag -ag -cT -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -SY -cd -cd -Dh -Dh -Dh -Tq -Mr -fG -qc -ba -XN -qc -Zm -SY -Tq -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(95,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Mr -iv -iv -iv -iv -iv -iv -iv -iv -cT -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -SY -cd -cd -cd -Dh -Dh -Tq -Mr -fG -qc -fe -gg -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(96,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Mr -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -cT -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -IS -cd -cd -cd -Dh -Dh -Tq -Mr -fG -qc -xV -du -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(97,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Mr -Bg -VZ -VZ -VZ -rk -EU -EU -EU -yV -kv -kv -kv -ml -PQ -kv -kv -ml -kv -kv -ml -PQ -PQ -PQ -ET -SY -cd -cd -cd -Dh -Dh -Tq -Mr -fG -qc -fe -gg -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(98,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Qv -ag -ag -ag -ag -ag -ag -ag -ag -cT -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -SY -cd -cd -cd -Dh -Dh -Tq -Mr -fG -bc -wF -TQ -bc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(99,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -vW -vW -vW -vW -vW -vW -Dh -Dh -Dh -Dh -Qv -Oe -iv -iv -iv -iv -iv -iv -iv -cT -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -SY -cd -cd -cd -Dh -Dh -Tq -Mr -fG -qc -fe -gg -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Nk -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(100,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -Dh -Dh -Qv -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -cT -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -SY -cd -cd -cd -Dh -Dh -Tq -Mr -fG -qc -xV -du -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Nk -Nk -Sq -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(101,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -bk -vW -vW -vW -vW -vW -vW -vW -Dh -Qv -Bg -VZ -VZ -VZ -rk -EU -EU -EU -yV -kv -kv -kv -ml -PQ -kv -kv -ml -kv -kv -ml -PQ -PQ -PQ -ET -SY -cd -cd -cd -Dh -Dh -Tq -Mr -fG -qc -fe -gg -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Nk -Nk -Nk -Sq -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(102,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -vW -bk -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -Qv -ag -ag -ag -ag -ag -ag -ag -ag -cT -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -IS -cd -cd -cd -Dh -Dh -Tq -Mr -fG -qc -xV -du -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -Dh -Nk -Nk -Nk -Sq -Sq -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(103,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -Qv -Oe -Oe -Oe -Oe -iv -iv -iv -iv -cT -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -iv -SY -cd -cd -cd -Dh -Dh -Tq -Mr -fG -bc -qD -bA -bc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -Nk -Nk -Nk -Nk -Nk -cd -cd -Nk -Nk -Nk -cd -cd -Nk -Nk -Nk -Nk -Nk -Nk -to -to -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(104,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -bk -vW -Qv -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -cT -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -Ei -SY -cd -cd -cd -Dh -Dh -Tq -Mr -fG -qc -xV -du -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -Nk -Nk -Sq -Sq -Sq -Sq -Sq -Sq -cd -cd -Sq -Sq -Sq -cd -cd -Sq -Sq -Sq -Sq -Sq -sf -vV -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(105,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -bk -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -Qv -Bg -VZ -VZ -VZ -rk -EU -EU -EU -yV -kv -kv -kv -ml -PQ -kv -kv -ml -kv -kv -ml -PQ -PQ -PQ -ET -SY -cd -cd -cd -Dh -Dh -Tq -Mr -fG -qc -fe -gg -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Sq -Sq -Sq -Sq -Sq -Sq -Sq -Sq -cd -cd -Sq -Sq -Sq -cd -cd -Sq -Sq -Sq -Sq -Sq -sf -vV -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(106,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Eh -Eh -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -vW -xY -ZT -ag -ag -ag -ag -ag -ag -ag -ag -cT -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -ag -SY -cd -cd -cd -Dh -Dh -Tq -Mr -fG -qc -xV -du -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -ia -ia -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -ia -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(107,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -Eh -dA -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -rD -dA -wV -Sl -Sl -uG -uG -uG -uG -uG -uG -cT -uG -uG -uG -uG -uG -ew -ew -ew -ew -ew -ew -ew -ew -ew -ew -Dh -Dh -cd -cd -Dh -Dh -Tq -Mr -fG -qc -fe -gg -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -ia -de -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -de -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(108,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -dA -Jv -Jv -yO -DM -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -DM -yO -Jv -Jv -dA -wV -wV -wV -wV -vW -vW -vW -vW -vW -cT -vW -vW -vW -vW -vW -vW -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -Dh -Dh -Tq -Mr -fG -bc -wF -TQ -bc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -vV -Cn -Dh -Dh -Dh -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(109,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -Dh -wV -wV -wV -dA -Jv -Jv -wP -Fz -aW -aW -aW -aW -aW -aW -aW -aW -aW -aW -aW -aW -aW -aW -wr -gl -aW -ha -dA -wV -wV -wV -wV -wV -vW -vW -vW -vW -cT -sZ -vW -vW -wV -wV -bk -vW -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -Dh -Dh -Tq -Mr -fG -qc -fe -gg -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(110,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -dA -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -NQ -dA -dA -dA -dA -dA -dA -dA -vW -wV -wV -PI -wV -wV -wV -wV -wV -wV -vW -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -Dh -Dh -Tq -Mr -fG -qc -xV -du -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(111,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -dA -VO -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -IM -NP -NP -IM -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -gM -dA -OB -QI -tO -OB -OB -dA -wV -wV -wT -te -wT -wV -wV -wV -wV -wV -vt -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -Dh -Dh -Tq -Mr -fG -qc -fe -gg -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -it -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(112,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -dA -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -IM -IM -EP -aG -IM -IM -Jv -Jv -Jv -Jv -Jv -Jv -Jv -NQ -dA -QI -QI -QI -QI -OB -dA -wV -wV -wT -Fc -wT -wV -wV -wV -wV -wV -bU -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -Dh -Dh -Tq -Mr -fG -qc -ba -XN -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -vV -xA -Nk -Nk -Nk -Nk -Nk -Nk -Nk -Nk -Nk -Nk -Nk -Nf -Nf -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(113,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -dA -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -iN -HJ -qZ -qZ -XL -xL -Jv -Jv -Jv -Jv -Jv -Jv -Jv -NQ -Fg -OB -QI -TI -TI -TI -wT -wT -Xv -ZC -mV -wT -wT -wT -wT -wV -wV -bU -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -Dh -Dh -Tq -Mr -fG -bc -qD -bA -bc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -ia -gp -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Zl -ia -vV -sX -Sq -Sq -Sq -Sq -Sq -Sq -Sq -Sq -Sq -Sq -sf -vV -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(114,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -dA -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -iN -Gb -EI -jo -jE -xL -Jv -Jv -Jv -Jv -Jv -Jv -Jv -NQ -dA -QI -OB -TI -tv -NW -qH -wT -MO -un -iu -eu -ee -GB -wT -wV -wV -bU -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -Dh -Dh -Tq -Mr -fG -qc -ik -QD -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -vV -sX -Sq -Sq -Sq -Sq -Sq -Sq -Sq -Sq -Sq -Sq -sf -vV -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(115,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -dA -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -IM -Yb -Yb -vk -Yb -IM -Jv -Jv -Jv -Jv -Jv -Jv -Jv -NQ -dA -ZF -QI -ra -Le -Le -Le -Td -ci -pG -Uq -cJ -Le -cW -wT -wV -wV -LE -wV -kw -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -Dh -Dh -Tq -Mr -fG -qc -fe -gg -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -ia -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -ia -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(116,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -dA -VO -Jv -Jv -Jv -Jv -Jv -Jv -Jv -IM -oV -ZP -Gb -fJ -IM -Jv -Jv -Jv -Jv -Jv -Jv -Jv -gM -dA -OB -QI -TI -Ey -KA -yW -wT -Pl -QX -Bn -kK -Gu -Yh -wT -wV -wV -bU -wV -Eh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -Dh -Dh -Tq -Mr -fG -qc -xV -du -qc -Zm -SY -Tq -Dh -Dh -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Nk -Nk -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -LX -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -de -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(117,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -dA -Jv -Jv -Jv -IM -nm -nm -IM -Jv -IM -Yb -Yb -nw -vG -IM -Jv -IM -NJ -NJ -IM -Jv -Jv -NQ -dA -Da -Da -Da -Da -Da -Da -wT -CK -JX -Bt -OC -OC -jn -wT -wV -wV -bU -wV -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -Dh -Pf -Tq -Xh -fG -qc -fe -gg -qc -Zm -sc -Tq -Pf -Dh -cd -cd -cd -Dh -Dh -ia -ia -jD -jD -jD -jD -jD -ia -ia -qd -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(118,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -dA -Jv -Jv -nv -IM -VQ -KQ -IM -Jv -IM -gi -Yb -mb -Ra -IM -Jv -IM -uA -UZ -IM -nv -Jv -NQ -dA -Pb -rx -lp -em -pP -tW -TI -ci -eK -qR -yq -Ys -DY -wT -wV -wV -bU -wV -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -bc -qc -Ux -qc -an -bc -WM -oM -bc -cN -qc -Ux -qc -bc -cd -cd -cd -Dh -Dh -ia -LX -kf -kf -kf -kf -kf -de -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(119,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -dA -Jv -Jv -nv -hu -CW -vb -IM -Jv -IM -yH -hg -nt -De -IM -Jv -IM -LK -ah -bB -nv -Jv -NQ -dA -Jc -kB -LB -gO -JW -tW -TI -MY -Bh -ki -ki -ki -RP -RP -RP -RP -bZ -RP -RP -RP -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -qc -oJ -xa -Tx -sn -bc -kJ -YF -bc -fU -Tx -xa -oJ -qc -cd -cd -cd -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -qd -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(120,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -dA -Jv -Jv -nv -Fd -CW -DG -IM -Vd -IM -Ut -Yb -Sa -Gd -IM -ek -IM -qb -UZ -eS -nv -Jv -NQ -dA -xP -fO -Ue -qK -XR -tW -ZS -IX -dV -ki -uJ -lv -RP -on -oB -RP -lD -mM -Xt -RP -Eh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -qc -oJ -Yo -El -EE -KK -Xa -Qc -KK -EE -Ry -cx -oJ -qc -cd -cd -cd -Dh -Dh -ia -qd -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(121,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -dA -VO -Jv -nv -IM -DA -IM -IM -IM -IM -Yb -vz -jC -BK -Yb -dQ -IM -IM -cP -IM -nv -Jv -gM -dA -nu -Wp -qr -aw -Zt -tW -ZV -IX -Se -ki -yc -Zh -RP -oO -vA -RP -hZ -ex -fc -ly -Eh -Eh -Eh -Dh -Dh -Dh -Dh -cd -cd -qc -oJ -oJ -kX -Wf -bc -PA -bA -bc -Dw -kX -oJ -oJ -qc -cd -cd -cd -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -Zl -ia -gp -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Zl -ia -gp -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Zl -ia -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(122,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -dA -Jv -Jv -nv -cg -CW -hB -fw -IM -IM -IM -IM -HX -aZ -IM -Za -Fl -UZ -UZ -jJ -nv -Jv -NQ -dA -yJ -fQ -Gz -qs -Gx -tW -tW -IX -dV -ki -do -lW -RP -BM -Bo -RP -OF -ex -HB -ly -kw -wV -wV -wV -Eh -Dh -Dh -eD -eD -eD -Cj -Cj -eD -Cj -eD -QC -FE -eD -Cj -eD -Cj -Cj -eD -MB -MB -eD -MB -MB -ia -gp -kf -kf -kf -kf -kf -kf -Yn -kf -kf -Fj -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -pI -kf -kf -IF -Yn -kf -kf -kf -kf -kf -qX -kf -kf -kf -kf -kf -kf -kf -Yn -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(123,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -dA -Jv -Jv -nv -lf -CW -CW -rR -IM -TK -eL -mI -im -Fv -Ea -Za -oS -UZ -UZ -jh -nv -Jv -NQ -dA -yB -Ap -ma -Ap -Ap -EX -tW -IX -Se -Yy -Ej -uy -ok -Dl -Zu -RP -Tk -ex -ex -RP -wV -wV -wV -wV -wV -wV -kw -eD -Kn -Am -Ld -Gl -mW -nL -LO -Rb -Lq -TB -NZ -mA -vf -LC -SN -bl -zC -Yt -SN -Ph -Yn -kf -kf -rh -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -gP -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(124,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -wV -dA -Jv -Jv -cQ -Hf -kV -Ee -od -We -NO -HU -jR -Ct -Fv -NO -aM -UH -KO -IN -Xz -wE -Jv -NQ -dA -GP -fz -Gp -tp -Lf -UO -BS -IX -ON -It -xE -WZ -wS -YT -vn -RP -vC -tz -oo -RP -wV -wV -wV -wV -wV -wV -wV -eD -PY -dE -uu -dE -dE -nL -Us -Rb -Lq -nH -HI -YG -hP -gk -HG -ZR -iT -yt -HG -Wj -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -gP -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(125,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -wV -dA -Jv -Jv -cQ -yb -BA -eR -GT -oX -zQ -XE -pZ -ux -ov -zQ -Qx -KY -kl -PT -Iu -wE -Jv -NQ -dA -gL -Zv -Gp -pX -bD -UO -BS -IX -dV -ki -aS -KX -wS -NX -IB -BX -wo -Fa -hT -eD -eD -eD -eD -eD -eD -eD -wV -eD -qp -xO -dE -Yg -dE -nL -Us -Rb -Lq -eE -Ts -qQ -Ku -MM -cB -cB -UX -cB -cB -kZ -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -gP -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(126,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -wV -dA -VO -Jv -cQ -Fo -Po -XV -yQ -IM -LJ -Ct -UC -bM -wZ -Me -IM -yf -HK -mK -da -wE -Jv -gM -dA -Ap -Ap -ma -Ap -Ap -aU -tW -IX -Se -ki -lA -aS -aS -aS -ki -yC -yC -vy -yC -eD -Or -Um -rG -aI -Jo -eD -eD -eD -SD -Sc -Bz -JD -sC -MV -yG -Pe -mf -aj -dG -rS -OY -nQ -Lq -Lq -Lq -Lq -Lq -Lq -ia -gp -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -gP -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(127,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -dA -Jv -Jv -IM -IM -IM -IM -IM -IM -HT -Ct -MK -xd -wZ -NO -IM -IM -IM -IM -IM -IM -Jv -NQ -dA -dR -Ap -ma -Ap -Ev -Ba -tW -IX -RE -ki -GA -ae -Rg -XA -yC -yo -ej -pn -XT -eD -LM -fL -rG -jq -sU -rG -Nn -eD -rX -Sz -Sz -Sz -Sz -nL -Us -Rb -Lq -eE -Ts -qQ -Ku -LC -SN -Xm -sJ -sJ -SN -Ph -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -gP -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -vV -Cn -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(128,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -sP -sP -sP -dA -Jv -Jv -Jv -IM -IM -ab -wD -hN -Fy -Ct -wb -NR -wZ -zY -dy -FR -Bu -IM -IM -Jv -Jv -NQ -dA -zh -Ap -ma -Ap -iy -Ap -BS -IX -dV -ki -ke -PB -GY -cG -yC -Rs -ig -eX -ub -eD -eD -lk -rG -pf -rG -rG -Pg -eD -xk -Kv -Kv -Kv -Kv -nU -TL -Rb -Lq -nH -HI -YG -hP -gk -HG -iT -nR -iT -HG -Wj -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -gP -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -vV -Ty -Nf -Nf -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(129,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -Qp -Mx -Mx -dA -Jv -Jv -Jv -Jv -cQ -bo -XW -WF -NO -Ct -PD -nC -wZ -NO -QN -SC -dN -wE -Jv -Jv -Jv -NQ -dA -Wc -Ap -DK -jM -xU -pa -wd -Th -SK -ki -ki -ki -yC -yC -yC -Ht -ig -eX -tF -eD -ff -FT -PC -WW -bN -yl -MF -Iq -Gq -iF -SG -iF -SG -iF -tf -aL -Lq -eE -Ts -qQ -Ku -MM -cB -jQ -oL -jQ -cB -kZ -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -gh -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -gP -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -ZZ -ZZ -ZZ -ZZ -DU -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(130,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -Mx -Mx -Qp -dA -VO -Jv -Jv -Jv -cQ -bo -sN -eq -NO -Ct -ll -BR -wZ -NO -PS -ao -TJ -wE -Jv -Jv -Jv -gM -dA -Vs -dF -IT -tD -Gj -Ap -Zy -IX -dV -tu -hD -gy -yC -AQ -Yk -Ht -nk -Hz -vH -eD -eD -rG -rG -rG -ax -rG -rG -eD -eB -gZ -nd -mH -KM -am -Ku -SE -CR -kF -wx -WB -xR -lh -Lq -Lq -Lq -Lq -Lq -Lq -ia -gp -kf -kf -kf -kf -kf -Zl -ia -gp -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -hi -ia -gp -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Zl -ia -ZZ -Vl -ZZ -ZZ -DU -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(131,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -sP -Mu -Qp -Qp -dA -Jv -Jv -Jv -Jv -cQ -bo -ZY -aP -NO -Ct -mD -JN -wZ -NO -yh -xG -lz -wE -Jv -Jv -Jv -JI -dA -MW -KU -al -tp -aK -CO -BS -rm -gR -yg -MD -Ps -yC -YD -bt -aO -nK -Py -Ao -rG -DX -pS -GI -KI -dM -xg -Ns -eD -eD -eD -zo -ka -lt -WC -ar -PE -Lq -eE -Ts -qQ -Ku -LC -SN -SN -pl -SN -SN -Ph -bS -kf -kf -kf -tM -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -gP -ia -kf -kf -kf -kf -kf -kf -ER -kf -kf -kf -kf -kf -kf -ia -lJ -ia -ia -ZZ -sX -Nk -Dh -Dh -Yj -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(132,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -sP -Mx -Qp -Mx -dA -Jv -Jv -Jv -IM -IM -Fr -uS -Yc -Uu -Ct -TU -fo -wZ -NO -fh -If -HQ -IM -IM -Jv -Jv -QS -dA -Tb -vD -sI -tp -Zv -Lm -tW -kp -qA -yg -Zx -lQ -yC -Wy -jw -Ht -yZ -oa -Kc -rG -rn -Rh -lT -qN -QB -wW -lT -fq -eD -eD -iV -Pw -Ou -DZ -LN -Ki -Lq -nH -uc -YG -hP -gk -HG -ZR -iT -yt -HG -Wj -Yn -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -gP -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Ni -VA -Yn -ZZ -sX -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(133,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -sP -Mx -Mx -Qp -dA -Jv -Jv -IM -IM -IM -aA -aA -aA -IM -Ax -NC -NC -BG -IM -aA -aA -aA -IM -IM -IM -Jv -FS -dA -tW -pr -Ur -tW -tW -tW -tW -IX -dV -yg -vp -Ah -yC -OP -Lo -Cr -iX -BV -Nm -rG -rb -Rx -hQ -hQ -Ky -hQ -wW -mn -Dq -eD -PR -NI -mG -Xe -Qk -Rb -Lq -Mk -ct -sz -zL -MM -zz -US -zl -dX -cB -kZ -Yn -hC -nc -ur -kf -DV -Ln -kf -ia -kf -kf -GL -kf -Ef -ur -kf -kf -ur -SV -np -kf -kf -ur -Ef -kf -WJ -kf -gP -ia -kf -kf -kf -kf -mj -yD -np -ur -PZ -kf -kf -kf -kf -ia -Nt -VB -Yn -ZZ -DU -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(134,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -sP -dW -sP -sP -dA -VO -GW -IM -IM -bI -Dg -xK -xK -IM -iE -zE -zE -UQ -IM -ge -Ow -uD -nf -IM -IM -GW -FS -dA -Jk -IX -IX -gv -tu -tu -tu -qy -Pq -tu -Ez -tu -yC -yC -yC -yC -yC -qV -yC -rG -VW -Nw -Rx -Lg -lI -Ho -OO -wW -Uo -eD -Cj -Cj -eD -Cj -eD -Rk -Vb -eD -Cj -eD -Cj -Cj -eD -Cj -Cj -eD -eD -ia -ia -ia -ia -AI -kf -Tw -BJ -ia -ia -Yn -Yn -ia -Yn -Cx -AI -kf -kf -ur -ia -nO -kf -kf -bO -Cx -Yn -ia -Yn -aT -ia -Yn -Yn -Yn -Yn -ia -zr -Fu -bO -ia -Yn -Yn -Yn -Yn -ia -NE -ia -ia -ia -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(135,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -KZ -Yv -Yv -Yv -mZ -Jv -ox -gb -eH -ep -wg -Aw -Aw -YV -ux -ow -tY -lo -ch -ms -iR -Oi -ao -qi -LP -ox -qB -GD -Th -li -Xn -Th -aJ -Th -li -Xn -sD -xp -oj -eQ -Eb -ji -io -DC -Et -Uv -Et -gS -td -mS -df -pq -AO -pq -Jy -ZM -Xb -SH -Xb -xw -Zs -pA -vw -BF -Ig -Cc -Vx -Hx -YR -Rc -gU -Rc -gU -Cf -RC -uW -Rm -Rm -sL -Rm -Rm -le -jy -Rm -bV -Rm -Rm -Rm -Rm -sL -Rm -dn -dn -Rm -eV -le -dn -dn -Rm -ro -Rm -Rm -Rm -FN -wB -Rm -Rm -Rm -Rm -Rm -CI -GS -Jn -KJ -Vt -Vt -Vt -Vt -Vt -NG -Vt -Yu -ia -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(136,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -Yv -Yv -Yv -Yv -mZ -Jv -PW -FM -Eq -Rf -wR -iK -ck -gr -Cd -cV -ri -YK -gr -OV -ri -ic -Ze -ol -zP -rl -RX -Uf -IX -ou -dq -IX -xN -IX -bP -is -DD -Pn -IX -IX -tR -zn -mR -ya -tR -IX -IX -kL -YW -ft -RN -hQ -Ec -hQ -Ge -wW -mn -lr -lT -Wz -sW -ul -Bc -Lq -NY -DQ -Wz -ng -ul -lT -FW -lT -wW -ng -lT -xT -ur -ur -wQ -ur -ur -en -Hr -ur -mE -ur -ur -ur -ur -wQ -ur -ur -ur -ur -Ae -en -ur -ur -ur -Hr -ur -ur -ur -ur -xm -ur -ur -ur -ur -ur -wQ -en -ur -Hr -ur -ur -ur -ur -ur -Oc -ur -Zb -ia -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(137,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -sP -SF -Yv -sP -sP -qj -Jv -IM -IM -IM -kq -im -rw -ry -IM -aH -mp -eW -fV -GW -Ch -EM -tH -LG -IM -IM -IM -NQ -qj -SO -FY -IX -gv -tu -tu -tu -Qw -av -tu -tu -tu -rG -rG -gd -rG -rG -rG -rG -rG -jj -Rx -Rx -hQ -xz -fx -FL -lT -fT -eD -MB -MB -eD -MB -eD -AU -Cw -eD -MB -eD -MB -MB -eD -MB -MB -eD -eD -lC -ia -ia -ia -AI -kf -xB -Xi -ia -ia -Yn -Yn -ia -Yn -Jt -AI -kf -kf -ur -ia -qf -kf -kf -bO -Jt -Yn -ia -Yn -Yn -ia -Yn -Yn -Yn -Yn -ia -eJ -Jg -bO -ia -Yn -Yn -Yn -Yn -ia -RZ -ia -ia -ia -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(138,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -sP -sS -UV -sP -Rz -dA -Jv -Jv -IM -IM -IM -gj -IM -IM -IM -wh -ZX -NC -lX -IM -IM -IM -TZ -Xy -IM -IM -Jv -NQ -dA -tu -tu -tu -tu -tu -tu -Cl -YQ -cE -tu -jf -mu -rG -Hy -hf -QQ -ZK -Sg -Gi -LV -qg -Rx -oU -hQ -NS -Lg -fR -ii -mx -eD -cH -tb -tb -tb -MB -gn -cY -MB -tb -tb -tb -tb -tb -tb -tb -ia -vP -bY -ia -ot -Tu -ur -kf -ZO -uI -kf -ia -kf -kf -Pr -kf -LX -ur -kf -kf -ur -ht -qU -kf -kf -ur -LX -kf -sb -kf -kf -ia -kf -kf -kf -kf -FA -Em -qU -ur -Ua -kf -kf -kf -kf -ia -Tf -Wk -Zz -ia -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(139,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -Av -dP -sP -Rz -dA -Jv -Jv -Jv -cQ -ui -im -jK -IM -fS -lZ -ze -XO -JO -FD -IM -sR -ey -oK -wE -Jv -Jv -NQ -dA -YO -nE -KH -AG -dr -tu -Eo -YQ -qw -pw -cn -Gs -rG -hY -tI -UP -ad -Lw -CU -rG -wY -Wa -wW -Xg -Nv -lT -cq -Jm -eD -eD -tb -tb -tb -tb -MB -UW -pT -MB -tb -cH -Fn -lY -lY -Wr -SS -MZ -PM -gV -ia -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Tg -WU -Kb -ia -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(140,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -Yv -wn -sP -Rz -dA -VO -Jv -Jv -cQ -Mh -FO -Pv -IM -fS -Mq -NK -Hn -JO -FD -IM -uP -II -QU -wE -Jv -Jv -gM -dA -YO -Ly -fr -ko -nD -tu -Wd -YQ -cE -tu -Ds -lG -rG -uQ -hf -VN -SB -AX -Wi -rG -At -Rh -ng -rK -YE -Si -Eg -eD -eD -tb -tb -tb -tb -tb -eD -ju -qh -eD -Fn -lY -KS -ZA -xt -xt -xt -ia -ia -ia -ia -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Tr -Tr -Tg -ia -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(141,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -QO -Ic -sP -Rz -dA -Jv -Jv -nv -IM -Bl -yv -lH -IM -IM -hs -hl -Yx -BP -IM -IM -jX -js -WT -IM -nv -Jv -NQ -dA -iP -OI -kH -Eu -yL -tu -Cz -YQ -cE -tu -BT -Gs -rG -zM -hf -iO -Fm -pe -Rq -rG -eD -eD -eD -eD -xZ -eD -eD -eD -tb -tb -Sy -AE -Wr -Wr -sq -Wr -Wr -Wr -KS -tb -tb -iC -tb -tb -tb -Nk -Nk -Nk -ia -kf -kf -kf -kf -kf -kf -Zl -ia -gp -kf -kf -kf -kf -kf -kf -kf -kf -kf -kk -kf -kf -kf -kf -kf -kf -kf -Zl -ia -gp -kf -kf -kf -kf -kf -Jw -kf -kf -kf -kf -kf -Zl -ia -ia -ia -ia -ia -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(142,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -Yv -wn -sP -Rz -dA -Jv -nv -IM -bJ -NO -NO -NO -Md -pE -lN -By -By -lN -bb -Gv -Ks -tt -IC -SR -IM -nv -NQ -nq -tu -tu -Zd -tu -tu -tu -nh -YQ -cE -tu -NM -vj -rG -lP -co -DL -eD -eD -eD -eD -eD -bT -dB -kW -Ri -lS -VS -eD -tb -Fn -KS -ZA -xt -xt -xt -xt -xt -xt -xt -xt -xt -gC -Dh -Dh -Dh -Dh -Nk -Nk -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -Sq -Sq -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(143,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -Yv -wn -sP -Rz -dA -Jv -nv -IM -oR -zG -pC -qt -IP -ev -BL -BL -BL -BL -ZW -eP -Ce -VX -Pz -QY -IM -nv -NQ -nq -dw -bg -iZ -UG -Tl -tu -Bs -YQ -Yl -tu -tu -tu -rG -RB -Bi -bq -eD -xu -Dd -SZ -jd -pT -ED -JT -ED -lS -bp -eD -tb -Zp -tb -iC -tb -tb -tb -tb -tb -tb -tb -tb -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -Sq -Sq -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(144,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -KZ -wn -sP -Rz -dA -Jv -nv -pE -lN -lN -lN -AB -AB -gf -Iz -Iz -Iz -Iz -xy -AB -AB -lN -lN -lN -bb -nv -NQ -nq -tu -jc -zv -SL -Ma -tu -QT -YQ -cE -tu -wA -Un -rG -zK -Bi -GJ -eD -PH -pT -cp -lS -MS -VS -VS -Ss -Oz -WL -eD -tb -Zp -tb -fi -tb -tb -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Yn -kf -kf -vq -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -Sq -Sq -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(145,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -Yv -zR -sP -sP -dA -VO -nv -BL -BL -BL -BL -IM -IM -Jv -Jv -Jv -Jv -Jv -Jv -IM -IM -BL -BL -BL -BL -nv -gM -nq -dw -bg -rq -Du -zu -tu -nI -YQ -cE -tu -eA -Nr -rG -gx -Qe -fK -cS -RW -qk -kc -MN -Ov -eD -eD -eD -eD -eD -eD -tb -Zp -tb -iC -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(146,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -Yv -uq -dD -sP -dA -Jv -nv -Iz -Iz -Iz -Iz -IM -Jv -Jv -Jv -Jv -Jv -Jv -Jv -Jv -IM -Iz -Iz -Iz -Iz -nv -NQ -nq -tu -tu -cA -tu -tu -tu -QA -YQ -qw -wa -go -wH -rG -rG -eD -eD -eD -eD -eD -eD -eD -eD -eD -AD -AD -AD -AD -AD -tb -Zp -Cp -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(147,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -ld -QE -nP -sP -dA -Jv -Jv -YB -EF -aW -aW -aW -aW -aW -aW -aW -aW -aW -aW -aW -aW -aW -aW -Bj -dl -aW -Ud -nq -Hs -yI -hU -Pa -Jf -yg -GC -YQ -cE -tu -cm -ga -IU -ca -nq -AD -XJ -sr -cX -sr -cX -sr -cX -sr -cX -sr -cX -mg -lY -OM -Cp -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Nk -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(148,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -Yv -ME -Lk -sP -dA -Jv -Jv -vi -rQ -Wl -Jv -Jv -Jv -Jv -Wl -Jv -Jv -Wl -Jv -Jv -Jv -Jv -Wl -rQ -vi -Jv -Jv -nq -yK -VG -CB -tk -Cb -yg -Dr -YQ -cE -tu -va -nV -IQ -lj -nq -AD -Ib -AD -Ib -AD -Ib -AD -Ib -AD -Ib -AD -Ib -AD -Cp -Cp -Cp -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -wC -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(149,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -sP -vU -wn -sP -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -dA -nq -Qf -YH -XI -hb -hr -tu -TF -YQ -cE -tu -tu -tu -tu -tu -nq -rf -uB -rf -uB -rf -uB -rf -uB -rf -uB -rf -uB -AD -Cp -wV -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(150,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -sP -LA -zi -hJ -Dv -Yv -CE -BB -SF -Yv -UV -Yv -CE -Yv -wN -Yv -Yv -Ml -Yv -CE -Yv -wN -Yv -Yv -UV -Yv -BB -kG -YQ -YQ -OR -cR -YQ -No -YQ -YQ -UD -YQ -YQ -Iw -YQ -bH -nq -rf -uB -rf -uB -rf -uB -rf -uB -rf -uB -rf -uB -AD -Cp -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Yn -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Yn -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(151,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -sP -fm -rY -hV -XD -XM -fa -dv -ea -Go -CL -tl -jG -LL -dS -tU -vm -Ub -tl -Vc -uz -Vk -qJ -vm -Ub -GN -Zg -xF -FQ -ZG -YP -Mj -eI -qC -eI -Pt -tn -Nd -Nd -Nd -ZU -cy -nq -rf -uB -rf -uB -rf -uB -rf -uB -rf -uB -rf -uB -AD -Cp -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -rp -kf -kf -Zl -ia -gp -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Zl -ia -gp -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Zl -ia -Nk -Nk -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(152,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -sP -sP -Ne -bi -sP -sP -sP -sP -IE -vr -IE -Kx -sP -sP -sP -Nb -mh -Nb -TR -sP -sP -sP -kQ -Na -cZ -AT -sP -nq -tu -Rp -vY -tu -tu -tu -tu -wL -tu -tu -tu -tu -xe -tu -nq -rf -uB -rf -uB -rf -uB -rf -uB -rf -uB -rf -uB -AD -Cp -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -qd -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -qd -kf -kf -kf -kf -kf -kf -Kf -kf -kf -kf -kf -kf -ia -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(153,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -sP -Kk -Ne -of -Ne -rj -sP -Kz -Ne -lO -Ne -qE -WV -sP -Kz -Ne -lO -Ne -qE -Ay -sP -Kz -Ne -lO -Ne -qE -WV -nq -ML -dp -YQ -rO -tu -fE -Gk -Hq -iq -GO -fE -Rv -Hq -lg -nq -rf -Ym -rf -sh -rf -se -rf -Ym -rf -sh -rf -Ym -Cp -Cp -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(154,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -sP -yS -EH -yp -Yz -Gr -sP -Ne -aN -Ne -aN -Ne -aN -sP -Ne -WG -Ne -zt -Ne -jV -sP -Ne -oE -Ne -oC -Ne -GF -yi -pH -WN -TV -fd -GO -yT -iD -TC -HP -tu -fF -iD -TC -HP -nq -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -Cp -Cp -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -Ef -kf -kf -kf -kf -kf -Nc -ia -kf -kf -Bv -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(155,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -sP -hF -qE -Ne -lO -Gr -sP -Ne -aN -Ne -aN -Ne -aN -sP -Ne -gX -Ne -KR -Ne -OZ -sP -Ne -oE -Ne -oC -Ne -GF -nq -kt -eO -Dt -mP -tu -oy -Df -YN -Xj -tu -FC -Df -QJ -vl -nq -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -Eh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -ia -jD -jD -jD -jD -jD -ia -ia -qd -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Ef -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Nc -ia -Nk -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(156,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -sP -KE -Ne -Ne -Ne -Gr -sP -Ne -aN -Ne -aN -Ne -aN -sP -Ne -IJ -Ne -pM -Ne -OZ -sP -Ne -AL -Ne -iM -Ne -GF -nq -nq -nq -CM -CM -nq -nq -nq -nq -nq -nq -nq -nq -nq -nq -nq -wV -wV -wV -Eh -Eh -Eh -Eh -Eh -Eh -Eh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -ia -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -ia -ia -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(157,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -sP -gu -Ne -Ne -na -Di -sP -Kz -aN -Ne -aN -na -zq -sP -Kz -Mm -Ne -sk -na -Sp -sP -Kz -AL -Ne -iM -na -Qj -sP -wV -wV -VF -VF -VF -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -Eh -Eh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(158,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -sP -Zk -sP -sP -sP -sP -wV -wV -Dh -Dh -Dh -Dh -wV -wV -wV -Dh -Dh -wV -wV -wV -Eh -Eh -Eh -Eh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -Mc -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(159,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -Dh -Dh -Dh -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -sP -Mx -fZ -UT -sP -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(160,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -wV -sP -Mu -Mx -Qp -sP -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(161,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -vW -QW -My -ES -xC -sP -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(162,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -vW -sP -sP -sP -sP -sP -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(163,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -wV -wV -wV -wV -wV -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -ia -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(164,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -Ef -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -kf -Nc -ia -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(165,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -ia -ia -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -jD -ia -ia -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(166,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(167,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -cd -cd -cd -cd -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(168,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(169,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(170,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(171,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(172,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(173,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(174,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(175,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(176,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(177,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(178,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(179,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(180,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(181,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(182,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(183,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(184,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(185,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(186,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(187,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(188,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(189,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(190,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(191,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} -(192,1,1) = {" -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -Dh -"} diff --git a/maps/sectors/tradeport_192/tradeport_192.dm b/maps/sectors/tradeport_192/tradeport_192.dm deleted file mode 100644 index 072ef6de9c2c..000000000000 --- a/maps/sectors/tradeport_192/tradeport_192.dm +++ /dev/null @@ -1,19 +0,0 @@ -/datum/map/sector/tradeport_192 - id = "tradeport_192" - name = "Sector - Trade Port (192x192)" - width = 192 - height = 192 - levels = list( - /datum/map_level/sector/tradeport_192, - ) - legacy_assert_shuttle_datums = list( - /datum/shuttle/autodock/overmap/trade, - ) - -/datum/map_level/sector/tradeport_192 - id = "Tradeport192" - name = "Sector - Trade Port (192x192)" - display_name = "Nebula Gas Trade Hub" - path = "maps/sectors/tradeport_192/levels/tradeport_192.dmm" - base_turf = /turf/space - base_area = /area/space diff --git a/maps/tether/tether.dm b/maps/tether/tether.dm index 45d7ab5f50c8..69b9b3ffad5d 100644 --- a/maps/tether/tether.dm +++ b/maps/tether/tether.dm @@ -22,7 +22,7 @@ /datum/map/sector/gaia_192, /datum/map/sector/frozen_192, /datum/map/sector/wasteland_192, - /datum/map/sector/tradeport_192, + /datum/map/sector/nebula_tradeport, /datum/map/sector/surt, /datum/map/sector/miaphus, /datum/map/sector/roguemining_192/one, diff --git a/maps/triumph/levels/deck4.dmm b/maps/triumph/levels/deck4.dmm index fd10b31cb6c8..4815f6e361db 100644 --- a/maps/triumph/levels/deck4.dmm +++ b/maps/triumph/levels/deck4.dmm @@ -2082,6 +2082,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/exploration) +"buD" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) "bvo" = ( /turf/simulated/wall/prepainted/exploration, /area/hallway/primary/aft) @@ -4152,10 +4159,6 @@ /obj/map_helper/access_helper/airlock/station/external_airlock, /turf/simulated/floor/tiled/dark, /area/hallway/secondary/docking_hallway) -"cVf" = ( -/obj/effect/floor_decal/sign/dock/three, -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/secondary/docking_hallway) "cVE" = ( /obj/machinery/light/small{ dir = 4 @@ -7898,6 +7901,20 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, /area/security/hallway) +"fsM" = ( +/obj/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 1; + frequency = 1380; + master_tag = "triumph_udang_dock"; + pixel_x = 24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) "fsN" = ( /obj/machinery/vending/coffee, /turf/simulated/floor/carpet/bcarpet, @@ -13385,6 +13402,17 @@ /obj/item/hand_labeler, /turf/simulated/floor/tiled, /area/exploration/pathfinder_office) +"jjZ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) "jkq" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -14619,6 +14647,21 @@ }, /turf/simulated/floor/wood, /area/hydroponics/garden) +"jXh" = ( +/obj/machinery/shield_diffuser, +/obj/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + frequency = 1380; + master_tag = "triumph_udang_dock"; + pixel_x = -24 + }, +/obj/machinery/door/airlock/glass_external{ + req_one_access = null + }, +/obj/map_helper/access_helper/airlock/station/external_airlock, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) "jXo" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -16618,6 +16661,17 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/general) +"lrZ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light{ + dir = 8; + light_range = 12 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) "lsb" = ( /obj/structure/bookcase, /obj/item/book/manual/detective, @@ -16897,6 +16951,15 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/triumph/surfacebase/tram) +"lDQ" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) "lEq" = ( /obj/machinery/atmospherics/component/unary/vent_pump/on{ dir = 4 @@ -18175,6 +18238,10 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge) +"mDV" = ( +/obj/effect/shuttle_landmark/triumph/deck4/udang, +/turf/space, +/area/space) "mEf" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -18755,6 +18822,22 @@ /obj/item/ammo_magazine/a5_7mm/five_seven/ap, /turf/simulated/floor/tiled/dark, /area/security/tactical) +"mVH" = ( +/obj/machinery/airlock_sensor{ + dir = 8; + frequency = 1380; + id_tag = "triumph_udang_dock"; + pixel_x = 23 + }, +/obj/machinery/atmospherics/component/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "triumph_udang_dock_pump" + }, +/obj/map_helper/airlock/sensor/chamber_sensor, +/obj/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) "mVP" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -23199,8 +23282,9 @@ /turf/simulated/floor/tiled/dark, /area/triumph/station/stairs_four) "qey" = ( +/obj/effect/floor_decal/sign/dock/three, /obj/effect/floor_decal/techfloor/orange{ - dir = 5 + dir = 4 }, /turf/simulated/floor/tiled/dark, /area/hallway/secondary/docking_hallway) @@ -26113,6 +26197,19 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge) +"sjk" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "triumph_udang_dock"; + pixel_x = -26; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) "sjw" = ( /obj/machinery/air_alarm{ dir = 8; @@ -28949,9 +29046,7 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, /turf/simulated/floor/tiled/dark, /area/hallway/secondary/docking_hallway) "unB" = ( @@ -33495,6 +33590,13 @@ }, /turf/simulated/floor/carpet/tealcarpet, /area/shuttle/civvie/general) +"xrj" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark, +/area/hallway/secondary/docking_hallway) "xrR" = ( /obj/effect/floor_decal/techfloor{ dir = 5 @@ -58785,14 +58887,14 @@ jNg jNg jNg jNg -jNg -jNg -jNg -jNg -jNg -jNg -jNg +wBM +wBM +wBM +wBM +yfo yfo +wBM +wBM hja dpS vTi @@ -58977,17 +59079,17 @@ jNg jNg jNg jNg +mDV jNg -jNg -jNg -jNg -jNg -jNg -jNg -jNg -jNg -yfo -hja +jXh +sjk +tyc +jjZ +xrj +xrj +lrZ +xrj +buD unu clX tkc @@ -59173,14 +59275,14 @@ jNg jNg jNg jNg -jNg -jNg -jNg -jNg -jNg -jNg -jNg -cVf +gKK +mVH +fsM +lDQ +aTp +aTp +aTp +aTp qey wDo hvu @@ -59367,13 +59469,13 @@ jNg jNg jNg jNg -jNg -jNg -jNg -jNg -jNg -jNg -jNg +wBM +wBM +gGl +wBM +yfo +yfo +wBM wBM pcR xPV diff --git a/maps/triumph/triumph-shuttle-landmarks.dm b/maps/triumph/triumph-shuttle-landmarks.dm index f64b71deb24d..9c42f066834e 100644 --- a/maps/triumph/triumph-shuttle-landmarks.dm +++ b/maps/triumph/triumph-shuttle-landmarks.dm @@ -37,6 +37,13 @@ right now its not a big priority - Bloop 2022 base_turf = /turf/space base_area = /area/space +/obj/effect/shuttle_landmark/triumph/deck4/udang + name = "NSV Triumph secondary civilian Dock" + landmark_tag = "triumph_udang_dock" + docking_controller = "triumph_udang_dock" + base_turf = /turf/space + base_area = /area/space + /obj/effect/shuttle_landmark/triumph/deck3/emt name = "NSV Triumph - EMT Shuttle Dock" landmark_tag = "triumph_emt_dock" @@ -156,6 +163,14 @@ right now its not a big priority - Bloop 2022 name = "In transit" landmark_tag = "nav_transit_trade" +/obj/effect/shuttle_landmark/transit/triumph/trade/udang + name = "In transit" + landmark_tag = "nav_transit_trade_udang" + +/obj/effect/shuttle_landmark/transit/triumph/trade/scoophead + name = "In transit" + landmark_tag = "nav_transit_trade_scoophead" + /obj/effect/shuttle_landmark/transit/triumph/emt name = "In transit" landmark_tag = "nav_transit_emt" diff --git a/maps/triumph/triumph.dm b/maps/triumph/triumph.dm index 9ec4e30dbd0d..936024523176 100644 --- a/maps/triumph/triumph.dm +++ b/maps/triumph/triumph.dm @@ -21,7 +21,7 @@ /datum/map/sector/gaia_192, /datum/map/sector/frozen_192, /datum/map/sector/wasteland_192, - /datum/map/sector/tradeport_192, + /datum/map/sector/nebula_tradeport, /datum/map/sector/surt, /datum/map/sector/miaphus, /datum/map/sector/roguemining_192/one,